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-22 13:22:58 +0400
committermrDoctorWho <mrdoctorwho@gmail.com>2014-09-22 13:22:58 +0400
commit600e41d9db7a4e2d7fb3c6b7d4d30c8685d1a777 (patch)
treea5605a8e8abdfb77e4036acd570c39f9ecb20659
parentd595ca24e8f315fda6c13d37b128ba354c512603 (diff)
Fix NodeProcessed() in pluginsr211
-rw-r--r--gateway.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/gateway.py b/gateway.py
index e13c4f8..c292931 100644
--- a/gateway.py
+++ b/gateway.py
@@ -180,6 +180,8 @@ def execute(handler, list=()):
result = handler(*list)
except SystemExit:
result = 1
+ except xmpp.NodeProcessed:
+ pass
except Exception:
result = -1
crashLog(handler.func_name)