aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2017-01-10 19:24:58 +0100
committerGuido Günther <agx@sigxcpu.org>2017-01-11 10:53:43 +0100
commit4c688e1da8edf0d690fbd71a13a69ed7c61812ee (patch)
tree90b04ec4a6a6fc207f4797d8cfae3d8d3885c3eb
parent21c89cae6918d548f9ed7883f9a12b742c414497 (diff)
Drop superfluous whens
Git-Dch: Ignore
-rw-r--r--gbp/scripts/common/import_orig.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gbp/scripts/common/import_orig.py b/gbp/scripts/common/import_orig.py
index 6ab0cd03..d52e8ec6 100644
--- a/gbp/scripts/common/import_orig.py
+++ b/gbp/scripts/common/import_orig.py
@@ -42,9 +42,9 @@ def orig_needs_repack(upstream_source, options):
We repack if
1. we want to filter out files and use pristine tar since we want
to make a filtered tarball available to pristine-tar
- 2. when we don't have a suitable upstream tarball (e.g. zip archive or unpacked dir)
+ 2. we don't have a suitable upstream tarball (e.g. zip archive or unpacked dir)
and want to use filters
- 3. when we don't have a suitable upstream tarball (e.g. zip archive or unpacked dir)
+ 3. we don't have a suitable upstream tarball (e.g. zip archive or unpacked dir)
and want to use pristine-tar
"""
if ((options.pristine_tar and options.filter_pristine_tar and len(options.filters) > 0)):