From: Guido Günther Date: Mon, 24 Oct 2011 15:37:36 +0000 (+0200) Subject: GitRepository.fetch(): fix remote arg X-Git-Tag: debian/0.6.0_git20111202~77 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=416268a64772d4f1c40e43ac0ceaa46aa20d2ce3;p=tools%2Fgit-buildpackage.git GitRepository.fetch(): fix remote arg --- 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): """