summaryrefslogtreecommitdiff
path: root/patchtracker
diff options
context:
space:
mode:
authorSean Finney <seanius@seanius.net>2009-12-02 20:52:07 +0100
committerSean Finney <seanius@seanius.net>2009-12-02 20:52:07 +0100
commit216a069108f534c993e52e7435c76db40c0e2568 (patch)
tree98c5cd28547e9188ec3b32612aa9017eea2ea0ff /patchtracker
parent4693d6a1c73931f0a12687000ab42bec86a7dd83 (diff)
downloadpatch-tracker-216a069108f534c993e52e7435c76db40c0e2568.tar.gz
allow for compression formats other than gz in the debian.tar files0.20091202_quilt-3.0
Diffstat (limited to 'patchtracker')
-rwxr-xr-xpatchtracker/SourceArchive.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/patchtracker/SourceArchive.py b/patchtracker/SourceArchive.py
index c4a62cd..0cdeb10 100755
--- a/patchtracker/SourceArchive.py
+++ b/patchtracker/SourceArchive.py
@@ -129,7 +129,7 @@ class SourcePackage:
self.diffgz_size=f['size']
self.diffgz_md5sum=f['md5sum']
self.type = "Debian-diff"
- elif fnmatch(f['name'], '*.debian.tar.gz'):
+ elif fnmatch(f['name'], '*.debian.tar.*'):
self.debtar_name=f['name']
self.debtar_size=f['size']
self.debtar_md5sum=f['md5sum']