summaryrefslogtreecommitdiff
path: root/gbp/git.py
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2011-10-24 17:37:36 +0200
committerGuido Günther <agx@sigxcpu.org>2011-10-26 09:45:10 +0200
commit416268a64772d4f1c40e43ac0ceaa46aa20d2ce3 (patch)
treec26c8b14114b692567bd8894eb7daaf1b8495196 /gbp/git.py
parent02efee70bf88c2c87886efa6aad57bad924a508e (diff)
GitRepository.fetch(): fix remote arg
Diffstat (limited to 'gbp/git.py')
-rw-r--r--gbp/git.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gbp/git.py b/gbp/git.py
index 41b83c3..d7c3910 100644
--- a/gbp/git.py
+++ b/gbp/git.py
@@ -837,7 +837,7 @@ class GitRepository(object):
if repo:
args = [repo]
- self._git_command("fetch", [ args ])
+ self._git_command("fetch", args)
def pull(self, repo=None, ff_only=False):
"""