diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-03-26 13:12:21 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-03-26 13:12:21 +0100 |
commit | aab53d3b4456ac4190c6b8482998f86b5ddef9bb (patch) | |
tree | 107ed29e54a3a0ab2dc2e924850e090cff5a1dff /portato/plugins/etc_proposals.py | |
parent | e5a6a92f3127f3d268c1d53a79a8cacf972a4418 (diff) | |
download | portato-aab53d3b4456ac4190c6b8482998f86b5ddef9bb.tar.gz portato-aab53d3b4456ac4190c6b8482998f86b5ddef9bb.tar.bz2 portato-aab53d3b4456ac4190c6b8482998f86b5ddef9bb.zip |
(Finally) Fixed new_version; Better log strings in plugins to differentiate them from the normal portato logs
Diffstat (limited to 'portato/plugins/etc_proposals.py')
-rw-r--r-- | portato/plugins/etc_proposals.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/plugins/etc_proposals.py b/portato/plugins/etc_proposals.py index 77b6be5..62605c8 100644 --- a/portato/plugins/etc_proposals.py +++ b/portato/plugins/etc_proposals.py @@ -22,7 +22,7 @@ def launch (options = []): if os.getuid() == 0: Popen(PROG+options) else: - error(_("Cannot start etc-proposals. Not root!")) + error("ETC_PROPOSALS :: %s",_("Cannot start etc-proposals. Not root!")) def etc_prop (*args, **kwargs): """Entry point for this plugin.""" |