From 8bf4bdbc8c5c65e482b09c1b33fd008ca07869eb Mon Sep 17 00:00:00 2001 From: "Edward Z. Yang" Date: Sat, 24 Apr 2010 20:23:28 -0400 Subject: [PATCH] Fix typo in prepare-new code; period not comma. Signed-off-by: Edward Z. Yang --- wizard/command/prepare_new.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wizard/command/prepare_new.py b/wizard/command/prepare_new.py index e80790a..fa302b8 100644 --- a/wizard/command/prepare_new.py +++ b/wizard/command/prepare_new.py @@ -5,7 +5,7 @@ from wizard import command def main(argv, baton): options, args = parse_args(argv, baton) - if not os.path.exists(",git"): + if not os.path.exists(".git"): raise Exception("Not in root directory of Git working copy") os.mkdir(".scripts") open(".scripts/.htaccess", "w").write("Deny from all\n") -- 2.45.2