From 416268a64772d4f1c40e43ac0ceaa46aa20d2ce3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Guido=20G=C3=BCnther?= Date: Mon, 24 Oct 2011 17:37:36 +0200 Subject: [PATCH] GitRepository.fetch(): fix remote arg --- gbp/git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): """ -- 2.7.4