summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2009-02-19 23:31:03 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2009-02-19 23:31:03 +0100
commit49b36ab957a53cea103fe63e117c3fe244485eaa (patch)
tree354eef4f569ddd6694382711a04abeac1472a4a5
parentdf87ac431080518039d1fb3943b06ec80677c2b7 (diff)
downloadportato-49b36ab957a53cea103fe63e117c3fe244485eaa.tar.gz
portato-49b36ab957a53cea103fe63e117c3fe244485eaa.tar.bz2
portato-49b36ab957a53cea103fe63e117c3fe244485eaa.zip
Fix gettext library name
-rw-r--r--portato/gui/windows/basic.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/windows/basic.py b/portato/gui/windows/basic.py
index f631376..b3f210c 100644
--- a/portato/gui/windows/basic.py
+++ b/portato/gui/windows/basic.py
@@ -25,7 +25,7 @@ from ...helper import error
# for the GtkBuilder to translate correctly :)
import ctypes
try:
- getlib = ctypes.cdll.LoadLibrary("libgettextlib.s")
+ getlib = ctypes.cdll.LoadLibrary("libgettextlib.so")
except OSError:
error("'libgettextlib.so' cannot be loaded. Might be, that there are no translations available in the GUI.")
else: