Mercurial > libervia-backend
diff src/plugins/plugin_exp_command_export.py @ 1374:0befb14ecf62
renamed tools.misc to tools.trigger
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 19 Mar 2015 19:44:37 +0100 |
parents | 301b342c697a |
children | 069ad98b360d |
line wrap: on
line diff
--- a/src/plugins/plugin_exp_command_export.py Thu Mar 19 14:41:15 2015 +0100 +++ b/src/plugins/plugin_exp_command_export.py Thu Mar 19 19:44:37 2015 +0100 @@ -23,7 +23,7 @@ from twisted.words.protocols.jabber import jid from twisted.internet import reactor, protocol -from sat.tools.misc import SkipOtherTriggers +from sat.tools import trigger from sat.tools.utils import clean_ustr PLUGIN_INFO = { @@ -57,10 +57,10 @@ log.info("connectionMade :)") def outReceived(self, data): - self.parent.host.sendMessage(self.target, self._clean(data), no_trigger=True, profile_key=self.profile) + self.parent.host.sendMessage(self.target, self._clean(data), no_trigger=True, profile_key=self.profile) def errReceived(self, data): - self.parent.host.sendMessage(self.target, self._clean(data), no_trigger=True, profile_key=self.profile) + self.parent.host.sendMessage(self.target, self._clean(data), no_trigger=True, profile_key=self.profile) def processEnded(self, reason): log.info (u"process finished: %d" % (reason.value.exitCode,)) @@ -124,7 +124,7 @@ _continue &= process.boolOption("continue") exclusive |= process.boolOption("exclusive") if exclusive: - raise SkipOtherTriggers + raise trigger.SkipOtherTriggers return _continue return True @@ -144,7 +144,7 @@ if not profile: log.warning("Unknown profile [%s]" % (profile,)) return - + for target in targets: try: _jid = jid.JID(target)