summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--gbp/command_wrappers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gbp/command_wrappers.py b/gbp/command_wrappers.py
index 45692da3..91e476e1 100644
--- a/gbp/command_wrappers.py
+++ b/gbp/command_wrappers.py
@@ -206,7 +206,7 @@ class GitAdd(GitCommand):
class GitRm(GitCommand):
"""Wrap git rm to remove files"""
def __init__(self, verbose=False):
- args = [ ['-q'], [] ][verbose]
+ args = [ ['--quiet'], [] ][verbose]
GitCommand.__init__(self, cmd='rm', args=args)
self.run_error = "Couldn't remove files"