Commit 6b32857d authored by Daniel Schaal's avatar Daniel Schaal Committed by Arno Töll
Browse files

also check for .debian.tar.bz2 and .xz in native.py



Signed-off-by: default avatarArno Töll <debian@toell.net>
parent 6f46b2b9
...@@ -54,7 +54,7 @@ class NativePlugin(BasePlugin): ...@@ -54,7 +54,7 @@ class NativePlugin(BasePlugin):
for file in self.changes['Files']: for file in self.changes['Files']:
if file['name'].endswith('.diff.gz'): if file['name'].endswith('.diff.gz'):
native = False native = False
if file['name'].endswith('.debian.tar.gz'): if file['name'].endswith(('.debian.tar.gz','.debian.tar.bz2','.debian.tar.xz')):
native = False native = False
if native: if native:
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment