summaryrefslogtreecommitdiff
path: root/DistUpgrade/DistUpgradeControler.py
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2006-01-16 12:32:58 +0100
committerMichael Vogt <michael.vogt@ubuntu.com>2006-01-16 12:32:58 +0100
commit528e7b61f4a4e6408c2a4c635b3167b389b5cd33 (patch)
tree2190cabae20477edb69a960da7fc7f6ef62a13ea /DistUpgrade/DistUpgradeControler.py
parent150ff5c35dd49ab503652ef295998bde9b013c60 (diff)
downloadpython-apt-528e7b61f4a4e6408c2a4c635b3167b389b5cd33.tar.gz
* log the package name in the removal blacklist as well
Diffstat (limited to 'DistUpgrade/DistUpgradeControler.py')
-rw-r--r--DistUpgrade/DistUpgradeControler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py
index 9519cabf..80c4dd0c 100644
--- a/DistUpgrade/DistUpgradeControler.py
+++ b/DistUpgrade/DistUpgradeControler.py
@@ -397,7 +397,7 @@ class DistUpgradeControler(object):
"""
for pkg in self.cache.getChanges():
if pkg.markedDelete and self._inRemovalBlacklist(pkg.name):
- logging.debug("The package '%s' is marked for removal but it's in the removal blacklist")
+ logging.debug("The package '%s' is marked for removal but it's in the removal blacklist", pkg.name)
return False
return True