From 2038354b61bdecc53c6bedc8d641bd47ca8285e5 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Mon, 1 Dec 2014 22:47:51 -0800 Subject: [PATCH] For convenience, adding some short-form arguments in addition to the long-form arguments. --- atticmatic/command.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/atticmatic/command.py b/atticmatic/command.py index 7ea236b2e..e9e8c9b52 100644 --- a/atticmatic/command.py +++ b/atticmatic/command.py @@ -13,7 +13,7 @@ def parse_arguments(): ''' parser = ArgumentParser() parser.add_argument( - '--config', + '-c', '--config', dest='config_filename', default='/etc/atticmatic/config', help='Configuration filename', @@ -25,7 +25,7 @@ def parse_arguments(): help='Excludes filename', ) parser.add_argument( - '--verbose', + '-v', '--verbose', action='store_true', help='Display verbose progress information', )