From 26845c93ace388d0e9c7a4fa59456b2cbf47eb70 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Nov 21 2011 23:31:29 +0000 Subject: Replace -c with -C for the --config option This prevents a conflict with the --clog option. --- diff --git a/src/fedpkg b/src/fedpkg index b4e542a..f18020d 100755 --- a/src/fedpkg +++ b/src/fedpkg @@ -19,7 +19,7 @@ import argparse # Setup an argparser and parse the known commands to get the config file parser = argparse.ArgumentParser(add_help=False) -parser.add_argument('-c', '--config', help='Specify a config file to use', +parser.add_argument('-C', '--config', help='Specify a config file to use', default='/etc/rpkg/fedpkg.conf') (args, other) = parser.parse_known_args()