summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Guenther <agx@sigxcpu.org>2008-03-19 09:20:48 +0100
committerGuido Guenther <agx@sigxcpu.org>2008-03-19 09:20:48 +0100
commit69c80eea0e00c2c22851758de4370fa2c8ec598b (patch)
treec0c553ea71d01d01439e5f04c669e25965839e36
parent2c892110655858c6a9c331b77c9558d937bbef66 (diff)
git-core 1.5.3.4 doesn't support -q so use --quiet instead
-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"