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

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2008-12-02 17:44:26 +0300
committerYann Leboulanger <asterix@lagaule.org>2008-12-02 17:44:26 +0300
commite2118de64ccc1c40fdae04ba3a3a522137a8ef24 (patch)
treeb6b671c829a36f66f58d8cebad463cb4cda78c5b /src/gajim-remote.py
parent983301d5893be622f573fbc7e40d58351aaf4686 (diff)
[thorstenp] remove useless import
Diffstat (limited to 'src/gajim-remote.py')
-rwxr-xr-xsrc/gajim-remote.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gajim-remote.py b/src/gajim-remote.py
index 378aa5abe..413a9f27a 100755
--- a/src/gajim-remote.py
+++ b/src/gajim-remote.py
@@ -33,7 +33,7 @@ import signal
signal.signal(signal.SIGINT, signal.SIG_DFL) # ^C exits the application
from common import exceptions
-from common import i18n
+from common import i18n # This installs _() function
try:
PREFERRED_ENCODING = locale.getpreferredencoding()