# HG changeset patch # User Jeff Hammel # Date 1380053546 25200 # Node ID 76b1723c87fcb3a43c4a4bb11c4f48c59d531964 # Parent 4063bbeaa7d4277c3948b48caf3179375014f79f python/setup_repo.py diff -r 4063bbeaa7d4 -r 76b1723c87fc python/setup_repo.py --- a/python/setup_repo.py Tue Sep 24 13:10:58 2013 -0700 +++ b/python/setup_repo.py Tue Sep 24 13:12:26 2013 -0700 @@ -36,7 +36,7 @@ print 'Running:\n%s' % (command_str) if globals()['dry_run']: return - return subprocess.check_output(*args, **kwargs) + return subprocess.check_output(command, *args, **kwargs) def init_repo(directory, message): """setup repository""" @@ -113,7 +113,7 @@ action='store_true', default=False, help="setup remote server only") parser.add_option('--dry-run', dest='dry_run', - action='store_true', default=True, + action='store_true', default=False, help="") options, args = parser.parse_args(args)