aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp/deb
diff options
context:
space:
mode:
Diffstat (limited to 'gbp/deb')
-rw-r--r--gbp/deb/git.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gbp/deb/git.py b/gbp/deb/git.py
index 23d3ee7e..f4c7eaf4 100644
--- a/gbp/deb/git.py
+++ b/gbp/deb/git.py
@@ -32,8 +32,8 @@ class DebianGitRepository(GitRepository):
'%(?P<R>([^%]|\\%))+'
'\)s')
- def __init__(self, path):
- super(DebianGitRepository, self).__init__(path)
+ def __init__(self, *args, **kwargs):
+ super(DebianGitRepository, self).__init__(*args, **kwargs)
self.pristine_tar = DebianPristineTar(self)
def tree_drop_dirs(self, tree, dirs):