summaryrefslogtreecommitdiff
path: root/apt/debfile.py
diff options
context:
space:
mode:
authorMichael Vogt <mvo@ubuntu.com>2014-09-03 10:25:26 +0200
committerMichael Vogt <mvo@ubuntu.com>2014-09-03 10:25:26 +0200
commit7262bab8e520db7e326c219c24e996e20f91e906 (patch)
treef5ffac43239ade26d6a68fa5e6bc252530ab17be /apt/debfile.py
parent5960003fc970480bd48b0cc1c0f8b5ed80af7dac (diff)
downloadpython-apt-7262bab8e520db7e326c219c24e996e20f91e906.tar.gz
fix tests
Diffstat (limited to 'apt/debfile.py')
-rw-r--r--apt/debfile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/apt/debfile.py b/apt/debfile.py
index 2528fd8a..1f93b7bb 100644
--- a/apt/debfile.py
+++ b/apt/debfile.py
@@ -721,7 +721,7 @@ class DscSrcPackage(DebPackage):
# we only care about the stanza with the "Format:" tag, the
# rest is gpg signature noise. we should probably have
# bindings for apts OpenMaybeClearsignedFile()
- if not "Format" in sec:
+ if "Format" not in sec:
continue
for tag in depends_tags:
if tag not in sec: