aboutsummaryrefslogtreecommitdiff
path: root/gbp/deb/pristinetar.py
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2016-07-03 19:41:26 +0200
committerGuido Günther <agx@sigxcpu.org>2016-07-04 14:09:58 +0200
commitd681e932b63a21aeaa7d07f4bfb533b583e4c1ae (patch)
tree4f04c067c610426d253a0b1c03cc6cc810a89f31 /gbp/deb/pristinetar.py
parent7621268d39080f467f30465f4955b7c85fe37bca (diff)
Use 'component' and 'additional tarball'
since this is what dpkg-source(1) uses. Git-Dch: Ignore
Diffstat (limited to 'gbp/deb/pristinetar.py')
-rw-r--r--gbp/deb/pristinetar.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gbp/deb/pristinetar.py b/gbp/deb/pristinetar.py
index 09e4d4e..ab7fbd6 100644
--- a/gbp/deb/pristinetar.py
+++ b/gbp/deb/pristinetar.py
@@ -43,7 +43,7 @@ class DebianPristineTar(PristineTar):
return super(DebianPristineTar, self).has_commit(name_regexp)
- def checkout(self, package, version, comp_type, output_dir, subtarball=None):
+ def checkout(self, package, version, comp_type, output_dir, component=None):
"""
Checkout the orig tarball for package I{package} of I{version} and
compression type I{comp_type} to I{output_dir}
@@ -61,6 +61,6 @@ class DebianPristineTar(PristineTar):
version,
comp_type,
output_dir,
- subtarball=subtarball)
+ component=component)
super(DebianPristineTar, self).checkout(name)