summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Vogt <mvo@debian.org>2014-07-04 16:42:23 +0200
committerMichael Vogt <mvo@debian.org>2014-07-04 16:42:23 +0200
commite8d1333f428a3ba4984a040fb687ce835a05e48f (patch)
treeab5755061ac328c0ad4dd7d237e2e485b01f949a
parentcb31126aa0a0ac0e31220d95611deb18639d3c9b (diff)
downloadpython-apt-e8d1333f428a3ba4984a040fb687ce835a05e48f.tar.gz
fix another pep8 failure
-rw-r--r--tests/old/test_enhances.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/old/test_enhances.py b/tests/old/test_enhances.py
index 74614674..a86d57da 100644
--- a/tests/old/test_enhances.py
+++ b/tests/old/test_enhances.py
@@ -11,7 +11,7 @@ for pkg in cache:
for enhances in or_list.or_dependencies:
s += " %s" % enhances.name
if (enhances.name in cache and
- not cache[enhances.name].is_installed):
+ not cache[enhances.name].is_installed):
s += "(*missing*) "
s += ","
print s[:-1]