diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-06-09 20:39:22 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-06-09 20:39:22 +0200 |
commit | a7a285b83f934a5d7f2bd34824b4650c3c0835d4 (patch) | |
tree | c5c091528a69b5e2e51ef39587a7b6812d86a892 /portato/gui/updater.py | |
parent | ee446ef74d1a1a63ce0fdc0b7076a3150e63352f (diff) | |
download | portato-a7a285b83f934a5d7f2bd34824b4650c3c0835d4.tar.gz portato-a7a285b83f934a5d7f2bd34824b4650c3c0835d4.tar.bz2 portato-a7a285b83f934a5d7f2bd34824b4650c3c0835d4.zip |
Fixed error message
Diffstat (limited to '')
-rw-r--r-- | portato/gui/updater.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |