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/notify.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 '')
-rw-r--r-- | portato/plugins/notify.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/plugins/notify.py b/portato/plugins/notify.py index ae2addd..8bb0a87 100644 --- a/portato/plugins/notify.py +++ b/portato/plugins/notify.py @@ -8,7 +8,7 @@ from portato.constants import APP_ICON, APP def notify (retcode, **kwargs): if retcode is None: - warning(_("Notify called while process is still running!")) + warning("NOTIFY :: %s", _("Notify called while process is still running!")) else: icon = APP_ICON if retcode == 0: |