aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2012-01-30 12:48:45 +0100
committerGuido Günther <agx@sigxcpu.org>2012-01-30 12:49:23 +0100
commit3ca0a98125f9599f36fac62b4b075e2e6f27ab5a (patch)
tree3a9bd04ce806add9bc0c4ce4c4fe92d74512c4c9 /gbp
parentc5eee2bac9c61c408dfd5905c1348c08884da3da (diff)
PristineTar: fix match when not passing in a compression type
Diffstat (limited to 'gbp')
-rw-r--r--gbp/deb/pristinetar.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gbp/deb/pristinetar.py b/gbp/deb/pristinetar.py
index 77273ec7..abbe1360 100644
--- a/gbp/deb/pristinetar.py
+++ b/gbp/deb/pristinetar.py
@@ -59,7 +59,7 @@ class PristineTar(Command):
return None
if not comp_type:
- ext = '\w+'
+ ext = '\w\+'
else:
ext = compressor_opts[comp_type][1]