diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-10-21 14:20:05 +0200 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-10-21 14:20:05 +0200 |
| commit | 1d27a9d8320275e936278b4a2f779f4371e60519 (patch) | |
| tree | 6be3b906e009bc3dd4f6dbc80ebbafe20d75a32e /DistUpgrade | |
| parent | 75af4477ee82dd7782b064bfe425e49356701cac (diff) | |
| download | python-apt-1d27a9d8320275e936278b4a2f779f4371e60519.tar.gz | |
* DistUpgrade/DistUpgradeCache.py:
- fix incorrect format in logging
Diffstat (limited to 'DistUpgrade')
| -rw-r--r-- | DistUpgrade/Changelog | 2 | ||||
| -rw-r--r-- | DistUpgrade/DistUpgradeCache.py | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 45ef5edf..6cb6a7df 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,5 @@ +2006-10-21: + - fix incorrect arguments in fixup logging (lp: #67311) 2006-10-17: - ensure bzr, tomboy and xserver-xorg-input-* are properly upgraded diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index a569bf37..7df0b510 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -185,7 +185,7 @@ class MyCache(apt.Cache): try: self.markInstall(pkg.name, "xserver-xorg-input fixup rule") except SystemError, e: - logging.debug("Failed to apply %s fixup: %s (%s)" % (pkg.name, e)) + logging.debug("Failed to apply fixup: %s (%s)" % (pkg.name, e)) # deal with held-backs that are unneeded for pkgname in ["hpijs", "bzr", "tomboy"]: |
