Repository : http://git.fedorahosted.org/cgit/copr.git
On branch : skvidal-backend
commit c7f2dc73ab31b1f904c3bca2eb44c36738237e4e Author: Seth Vidal skvidal@fedoraproject.org Date: Wed Dec 5 14:25:23 2012 -0500
odd that pyflakes didn't catch a comma missing
copr-be.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/copr-be.py b/copr-be.py index 4fd48af..fc03430 100644 --- a/copr-be.py +++ b/copr-be.py @@ -176,7 +176,7 @@ def parse_args(args): parser = optparse.OptionParser('\ncopr-be [options]') parser.add_option('-c', '--config', default='/etc/copr-be.conf', dest='config_file', help="config file to use for copr-be run") - parser.add_option('-d' '--daemonize', default=False, dest='daemonize', + parser.add_option('-d','--daemonize', default=False, dest='daemonize', action='store_true', help="daemonize or not") parser.add_option('-p', '--pidfile', default='/var/run/copr-be.pid', dest='pidfile', help="pid file to use for copr-be if daemonized")
copr-devel@lists.fedorahosted.org