Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'latex/latex.py')
-rw-r--r--latex/latex.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/latex/latex.py b/latex/latex.py
index d5ed3ff..0387424 100644
--- a/latex/latex.py
+++ b/latex/latex.py
@@ -32,10 +32,10 @@ from tempfile import mkstemp, mkdtemp
import random
from subprocess import Popen, PIPE
-from common import gajim
-from plugins import GajimPlugin
-from plugins.helpers import log, log_calls
-from plugins.gui import GajimPluginConfigDialog
+from gajim.common import app
+from gajim.plugins import GajimPlugin
+from gajim.plugins.helpers import log, log_calls
+from gajim.plugins.gui import GajimPluginConfigDialog
Gdk.threads_init()
@@ -145,7 +145,7 @@ class LatexRenderer(Thread):
def fg_str(fmt):
try:
return [{'hex' : '+level-colors', 'tex' : '-fg'}[fmt],
- gajim.interface.get_fg_color(fmt)]
+ app.interface.get_fg_color(fmt)]
except KeyError:
# interface may not be available when we test latex at startup
return []