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>2010-10-28 15:18:37 +0400
committerYann Leboulanger <asterix@lagaule.org>2010-10-28 15:18:37 +0400
commit7ae19c96f44762cdb6538ab6b8d6c21192755e50 (patch)
tree54f0cc1d6dcdad98f91d633376cb86cbb02531d4
parent668ff34fa419274eaf9a59d6e37d51367db3bf2c (diff)
fix typo
-rw-r--r--src/gajim.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gajim.py b/src/gajim.py
index 2ddfa3246..a8d25088e 100644
--- a/src/gajim.py
+++ b/src/gajim.py
@@ -54,7 +54,7 @@ if os.name == 'nt':
import ctypes.util
libintl_path = ctypes.util.find_library('intl')
if libintl_path == None:
- local_intl = ok.path.join('gtk', 'bin', 'intl.dll')
+ local_intl = os.path.join('gtk', 'bin', 'intl.dll')
if os.path.exists(local_intl):
libintl_path = local_intl
if libintl_path == None: