diff options
author | MaZderMind <github@mazdermind.de> | 2015-05-10 21:14:09 +0200 |
---|---|---|
committer | MaZderMind <github@mazdermind.de> | 2015-05-10 21:14:09 +0200 |
commit | 80d57d8006a5af2854efa195c49c6f5edd5f93b1 (patch) | |
tree | f946b6ce3f9305a7e8d8761e2630b07d32273ef1 /voctocore/lib/args.py | |
parent | ff90df796c715ee9c95fb8a2152cea2698fe92ab (diff) |
Allow Parsing an extra File via Command-Line
Diffstat (limited to 'voctocore/lib/args.py')
-rw-r--r-- | voctocore/lib/args.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/voctocore/lib/args.py b/voctocore/lib/args.py index 6699679..3f1f3df 100644 --- a/voctocore/lib/args.py +++ b/voctocore/lib/args.py @@ -9,7 +9,8 @@ parser.add_argument('-v', '--verbose', action='store_true', parser.add_argument('-c', '--color', action='store', choices=['auto', 'always', 'never'], default='auto', help="Control the use of colors in the Log-Output") -parser.add_argument('-i', '---config-ini', action='store', +parser.add_argument('-i', '--ini-file', action='store', help="Load a custom config.ini-File") + Args = parser.parse_args() |