Removed exit() from PySnarl so it doesn't terminate Gajim on non-Windows platforms.

This commit is contained in:
Mateusz Biliński 2008-08-16 20:53:10 +00:00
parent 94f27ecffc
commit ff8eaddf51
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ be converted to ASCII."""
sys.stderr.write("You need to have either"+
" ctypes or pywin32 installed.\n")
sys.stderr.flush()
sys.exit(2)
#sys.exit(2)
myWin32Funcs = Win32Funcs()