aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp/scripts/push.py
diff options
context:
space:
mode:
authorNicolas Boulenguez <nicolas@debian.org>2022-05-08 16:48:29 +0200
committerGuido Günther <agx@sigxcpu.org>2022-05-10 14:34:46 +0200
commite17d814394e58307c9c67cbb3e59d95083d02be8 (patch)
tree573c39872999d693dc8d0256024375c34fdfc226 /gbp/scripts/push.py
parent2405e15805c68b53628cb4fb55e1e6313c8e114c (diff)
scripts: add -v shortcut for --verbose where it has been forgotten
Closes: #1010750
Diffstat (limited to 'gbp/scripts/push.py')
-rwxr-xr-xgbp/scripts/push.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gbp/scripts/push.py b/gbp/scripts/push.py
index 63a06a20..494d7eb2 100755
--- a/gbp/scripts/push.py
+++ b/gbp/scripts/push.py
@@ -53,7 +53,7 @@ def build_parser(name):
parser.add_config_file_option(option_name="color", dest="color", type='tristate')
parser.add_config_file_option(option_name="color-scheme",
dest="color_scheme")
- parser.add_option("--verbose", action="store_true", dest="verbose",
+ parser.add_option("-v", "--verbose", action="store_true", dest="verbose",
default=False, help="verbose command execution")
return parser