Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMateusz Biliński <mateusz.bilinski@gmail.com>2008-08-17 00:53:10 +0400
committerMateusz Biliński <mateusz.bilinski@gmail.com>2008-08-17 00:53:10 +0400
commitff8eaddf5120bb6b232fae234d58623c0dd6ba68 (patch)
tree83a7cb70fcc364fea3f25e48c73467817ec44331 /plugins
parent94f27ecffcbe61b3723f6d77a101e6ee6c21ee2f (diff)
Removed exit() from PySnarl so it doesn't terminate Gajim on non-Windows platforms.
Diffstat (limited to 'plugins')
-rwxr-xr-xplugins/snarl_notifications/PySnarl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/snarl_notifications/PySnarl.py b/plugins/snarl_notifications/PySnarl.py
index f75ccd5c1..118a7b25c 100755
--- a/plugins/snarl_notifications/PySnarl.py
+++ b/plugins/snarl_notifications/PySnarl.py
@@ -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()