]> scripts.mit.edu Git - wizard.git/commitdiff
Fix typo in prepare-new code; period not comma.
authorEdward Z. Yang <ezyang@mit.edu>
Sun, 25 Apr 2010 00:23:28 +0000 (20:23 -0400)
committerEdward Z. Yang <ezyang@mit.edu>
Sun, 25 Apr 2010 00:23:28 +0000 (20:23 -0400)
Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
wizard/command/prepare_new.py

index e80790a38e0c94a28926ef5fec4f29c84d8616b3..fa302b88507fae4595ee283b8e3ae04b8989df49 100644 (file)
@@ -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")