diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2012-01-10 11:07:12 +0100 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2012-01-10 11:07:12 +0100 |
| commit | 6c8269fc130c66d4a450a004af4e120e074808ce (patch) | |
| tree | 74636d5539386a998af5c35833574135e2ab00d0 /aptsources/distro.py | |
| parent | 1fc5fddddd6041eb17331d9943f7f489bd53314a (diff) | |
| download | python-apt-6c8269fc130c66d4a450a004af4e120e074808ce.tar.gz | |
pyflakes fixes
Diffstat (limited to 'aptsources/distro.py')
| -rw-r--r-- | aptsources/distro.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/aptsources/distro.py b/aptsources/distro.py index b4056b27..27d7f859 100644 --- a/aptsources/distro.py +++ b/aptsources/distro.py @@ -25,10 +25,8 @@ import gettext import logging import re import os -import sys from xml.etree.ElementTree import ElementTree -import gettext from apt_pkg import gettext as _ @@ -94,7 +92,7 @@ class Distribution(object): comps = [] cdrom_comps = [] enabled_comps = [] - source_code = [] + #source_code = [] for source in self.sourceslist.list: if (source.invalid == False and self.is_codename(source.dist) and |
