summaryrefslogtreecommitdiff
path: root/doc/source/examples
diff options
context:
space:
mode:
authorMichael Vogt <mvo@ubuntu.com>2014-06-30 11:21:36 +0200
committerMichael Vogt <mvo@debian.org>2014-06-30 11:22:28 +0200
commit9db885ce4fb06f8e154b97cd6cf4e0f09a241f54 (patch)
tree800048e31e28f866927f74d7ff9947c6a0af8bb6 /doc/source/examples
parent1fd7279ca39c22f9a688e404b27bc1f3aef30cc7 (diff)
downloadpython-apt-9db885ce4fb06f8e154b97cd6cf4e0f09a241f54.tar.gz
make pep8 happy (again)
Diffstat (limited to 'doc/source/examples')
-rw-r--r--doc/source/examples/missing-deps.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/examples/missing-deps.py b/doc/source/examples/missing-deps.py
index 7af18128..b9ccdc19 100644
--- a/doc/source/examples/missing-deps.py
+++ b/doc/source/examples/missing-deps.py
@@ -43,7 +43,7 @@ def main():
# Check every version
for pfile, _ in version.file_list:
if (pfile.origin == "Debian" and pfile.component == "main" and
- pfile.archive == "unstable"):
+ pfile.archive == "unstable"):
# We only want packages from Debian unstable main.
check_version(version)
break