summaryrefslogtreecommitdiff
path: root/apt
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2010-09-08 12:12:13 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2010-09-08 12:12:13 +0200
commit90fa0ecbc1459e60a9fe78458d9ab7043a156f94 (patch)
tree63b254b2e9f5dda2a16c640b9c19967a3335b0c1 /apt
parent57c801f9472ac8572110f8958be1089fca6937f1 (diff)
downloadpython-apt-90fa0ecbc1459e60a9fe78458d9ab7043a156f94.tar.gz
* apt/debfile.py:
- remove bogus comment * python/tag.cc: - allow "bytes" type in TagSecNew (for python3)
Diffstat (limited to 'apt')
-rw-r--r--apt/debfile.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/apt/debfile.py b/apt/debfile.py
index 7728ed21..25a45e98 100644
--- a/apt/debfile.py
+++ b/apt/debfile.py
@@ -65,7 +65,6 @@ class DebPackage(object):
self.filename = filename
self._debfile = apt_inst.DebFile(open(self.filename))
control = self._debfile.control.extractdata("control")
- # hm, 'replace' is probably better but python2.6 test fail with that
self._sections = apt_pkg.TagSection(control)
self.pkgname = self._sections["Package"]