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

github.com/mrDoctorWho/vk4xmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormrDoctorWho <mrdoctorwho@gmail.com>2014-09-24 12:05:12 +0400
committermrDoctorWho <mrdoctorwho@gmail.com>2014-09-24 12:05:12 +0400
commit09dc445a0ecc9d46edaad435bf1de2dd3db47b72 (patch)
tree54cc9cbf407d1d69657a6e48e8e25f5f934568f7
parent600e41d9db7a4e2d7fb3c6b7d4d30c8685d1a777 (diff)
Fix exception in execute()
-rw-r--r--gateway.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gateway.py b/gateway.py
index c292931..82d0c1a 100644
--- a/gateway.py
+++ b/gateway.py
@@ -181,7 +181,7 @@ def execute(handler, list=()):
except SystemExit:
result = 1
except xmpp.NodeProcessed:
- pass
+ result = 1
except Exception:
result = -1
crashLog(handler.func_name)