summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2008-06-09 20:39:22 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2008-06-09 20:39:22 +0200
commita7a285b83f934a5d7f2bd34824b4650c3c0835d4 (patch)
treec5c091528a69b5e2e51ef39587a7b6812d86a892
parentee446ef74d1a1a63ce0fdc0b7076a3150e63352f (diff)
downloadportato-a7a285b83f934a5d7f2bd34824b4650c3c0835d4.tar.gz
portato-a7a285b83f934a5d7f2bd34824b4650c3c0835d4.tar.bz2
portato-a7a285b83f934a5d7f2bd34824b4650c3c0835d4.zip
Fixed error message
-rw-r--r--doc/TODO3
-rw-r--r--portato/gui/updater.py2
2 files changed, 1 insertions, 4 deletions
diff --git a/doc/TODO b/doc/TODO
index 0f59b20..d79f383 100644
--- a/doc/TODO
+++ b/doc/TODO
@@ -15,14 +15,11 @@ Backend:
- rewrite flags handling
-- do not alert a block, if a package blocks a version of one package which is updated to a new one not being blocked anymore
- also check installed packages if they block the current one
- make sure, a package being removed from the queue is not needed as a dependency by another package
- binary package support
-- move resume_loop and shutdown plugins into main code
-
GUI:
====
diff --git a/portato/gui/updater.py b/portato/gui/updater.py
index 44bc4e1..ba46ffd 100644
--- a/portato/gui/updater.py
+++ b/portato/gui/updater.py
@@ -93,7 +93,7 @@ q
return p
elif not pkgs: # nothing found =|
if not masked:
- warning(_("No unmasked version of package '%s' found. Trying masked ones. This normally should not happen..."))
+ warning(_("No unmasked version of package '%s' found. Trying masked ones. This normally should not happen..."), pv)
return self.find(pv, True)
else: