This commit is contained in:
Yann Leboulanger 2010-10-28 13:18:37 +02:00
parent 8dcbf3e73e
commit 74e1965e2e
1 changed files with 1 additions and 1 deletions

View File

@ -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: