mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-14 22:49:23 +01:00
String: fix it up to work with the previously committed enhancement for subprocess timeout.
Signed-off-by: James McCoy <jamessan@users.sourceforge.net>
This commit is contained in:
parent
6a9af819a3
commit
72c5c8ec09
@ -142,8 +142,11 @@ class String(callbacks.Plugin):
|
|||||||
irc.error(s)
|
irc.error(s)
|
||||||
else:
|
else:
|
||||||
t = self.registryValue('re.timeout')
|
t = self.registryValue('re.timeout')
|
||||||
|
try:
|
||||||
v = commands.process(f, text, timeout=t, pn=self.name(), cn='re')
|
v = commands.process(f, text, timeout=t, pn=self.name(), cn='re')
|
||||||
irc.reply(v)
|
irc.reply(v)
|
||||||
|
except commands.ProcessTimeoutError, e:
|
||||||
|
irc.error("ProcessTimeoutError: %s" % (e,))
|
||||||
re = thread(wrap(re, [first('regexpMatcher', 'regexpReplacer'),
|
re = thread(wrap(re, [first('regexpMatcher', 'regexpReplacer'),
|
||||||
'text']))
|
'text']))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user