Compare commits
No commits in common. "43cb559af2e792f27dc6b387faccff9f319cf4a6" and "808cd75aa0fae09c7fd7de2b369634380ab49d36" have entirely different histories.
43cb559af2
...
808cd75aa0
|
|
@ -41,9 +41,7 @@ def main():
|
||||||
parser_update.add_argument('existing_shortname', help='the existing shortname to update')
|
parser_update.add_argument('existing_shortname', help='the existing shortname to update')
|
||||||
|
|
||||||
group_mutually_exclusive = parser.add_mutually_exclusive_group()
|
group_mutually_exclusive = parser.add_mutually_exclusive_group()
|
||||||
group_mutually_exclusive.add_argument('-v', '--verbose',
|
group_mutually_exclusive.add_argument('-v', '--verbose', action='count', default=0, help='increase output verbosity')
|
||||||
action='count', default=0,
|
|
||||||
help='increase output verbosity')
|
|
||||||
group_mutually_exclusive.add_argument('-q', '--quiet', action='store_true', help='disable output')
|
group_mutually_exclusive.add_argument('-q', '--quiet', action='store_true', help='disable output')
|
||||||
|
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue