diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-02-19 23:31:03 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-02-19 23:31:03 +0100 |
commit | 49b36ab957a53cea103fe63e117c3fe244485eaa (patch) | |
tree | 354eef4f569ddd6694382711a04abeac1472a4a5 /portato/gui | |
parent | df87ac431080518039d1fb3943b06ec80677c2b7 (diff) | |
download | portato-49b36ab957a53cea103fe63e117c3fe244485eaa.tar.gz portato-49b36ab957a53cea103fe63e117c3fe244485eaa.tar.bz2 portato-49b36ab957a53cea103fe63e117c3fe244485eaa.zip |
Fix gettext library name
Diffstat (limited to '')
-rw-r--r-- | portato/gui/windows/basic.py | 2 |
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: |