LatexPlugin.fix traceback on start Gajim

This commit is contained in:
Denis Fomin
2013-01-29 22:10:56 +04:00
parent d6715ad6c8
commit fbd7bb59e7

View File

@@ -33,7 +33,6 @@ import random
from subprocess import Popen, PIPE from subprocess import Popen, PIPE
from common import gajim from common import gajim
from common import helpers
from plugins import GajimPlugin from plugins import GajimPlugin
from plugins.helpers import log, log_calls from plugins.helpers import log, log_calls
from plugins.gui import GajimPluginConfigDialog from plugins.gui import GajimPluginConfigDialog
@@ -79,7 +78,7 @@ def try_run(argv, directory):
except Exception as e: except Exception as e:
return _('Error executing "%(command)s": %(error)s') % { return _('Error executing "%(command)s": %(error)s') % {
'command': " ".join(argv), 'command': " ".join(argv),
'error': helpers.decode_string(str(e))} 'error': str(e)}
BLACKLIST = ['\def', '\\let', '\\futurelet', '\\newcommand', '\\renewcomment', BLACKLIST = ['\def', '\\let', '\\futurelet', '\\newcommand', '\\renewcomment',
'\\else', '\\fi', '\\write', '\\input', '\\include', '\\chardef', '\\else', '\\fi', '\\write', '\\input', '\\include', '\\chardef',
@@ -402,4 +401,3 @@ class LatexPlugin(GajimPlugin):
tv.get_buffer().disconnect(d['h_id']) tv.get_buffer().disconnect(d['h_id'])
self.latex_tag.disconnect(d['tag_id']) self.latex_tag.disconnect(d['tag_id'])