From 053c5c077619502b968f0b1f649f47fa2ef5398e Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos <kourem@gmail.com> Date: Sat, 2 Dec 2006 01:26:45 +0000 Subject: [PATCH] we now fail if no pywin32 is there. REFIX --- src/gajim.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gajim.py b/src/gajim.py index 48aba65d70..31e2deab28 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -72,6 +72,7 @@ except exceptions.PysqliteNotAvailable, e: if os.name == 'nt': try: import winsound # windows-only built-in module for playing wav + import win32api # do NOT remove. we req this module except: pritext = _('Gajim needs pywin32 to run') sectext = _('Please make sure that Pywin32 is installed on your system. You can get it at %s') % 'http://sourceforge.net/project/showfiles.php?group_id=78018' -- GitLab