diff options
| -rw-r--r-- | apt/package.py | 6 | ||||
| -rw-r--r-- | debian/changelog | 7 |
2 files changed, 10 insertions, 3 deletions
diff --git a/apt/package.py b/apt/package.py index d57730c5..4633123a 100644 --- a/apt/package.py +++ b/apt/package.py @@ -46,7 +46,7 @@ class Package(object): # check if we found a version if ver == None: - #print "No version for: %s (Candiate: %s)" % (self._pkg.Name, UseCandidate) + #print "No version for: %s (Candidate: %s)" % (self._pkg.Name, UseCandidate) return False if ver.FileList == None: @@ -327,8 +327,8 @@ if __name__ == "__main__": print "Priority (Installed): %s " % pkg.installedPriority print "Installed: %s " % pkg.installedVersion print "Candidate: %s " % pkg.candidateVersion - print "CandiateDownloadable: %s" % pkg.candidateDownloadable - print "CandiateOrigins: %s" % pkg.candidateOrigin + print "CandidateDownloadable: %s" % pkg.candidateDownloadable + print "CandidateOrigins: %s" % pkg.candidateOrigin print "SourcePkg: %s " % pkg.sourcePackageName print "Section: %s " % pkg.section print "Summary: %s" % pkg.summary diff --git a/debian/changelog b/debian/changelog index 0591ce09..2e8ec5c7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +python-apt (0.6.16.1) unstable; urgency=low + + * memleak fixed when pkgCache objects are deallocated + * typos fixed (thanks to Gustavo Franco) + + -- + python-apt (0.6.16) unstable; urgency=low * added GetPkgAcqFile to queue individual file downloads with the |
