Commit 1d037663 authored by Andreas Jung's avatar Andreas Jung

fixed feedback msg for manage_restartQueueThread()

parent 8e886ae9
......@@ -242,7 +242,8 @@ class MailBase(Acquisition.Implicit, OFS.SimpleItem.Item, RoleManager):
raise ValueError('Unsupported action %s' % action)
if REQUEST is not None:
msg = 'Queue processor thread %sed' % action
msg = 'Queue processor thread %s' % \
(action == 'stop' and 'stopped' or 'started')
return self.manage_main(self, REQUEST, manage_tabs_message=msg)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment