diff options
author | Lance Stout <lancestout@gmail.com> | 2013-09-20 11:50:51 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2013-09-20 11:50:51 -0700 |
commit | cd2d25cf874c5931b5c5a843c09875625bb9a84c (patch) | |
tree | ad6e0421ec44a15f8b60c76e3042dfbe7ccb9cb5 /examples/pubsub_events.py | |
parent | b8b2f37e7b06647a48dfcb41c44c10121b04c514 (diff) | |
download | slixmpp-cd2d25cf874c5931b5c5a843c09875625bb9a84c.tar.gz slixmpp-cd2d25cf874c5931b5c5a843c09875625bb9a84c.tar.bz2 slixmpp-cd2d25cf874c5931b5c5a843c09875625bb9a84c.tar.xz slixmpp-cd2d25cf874c5931b5c5a843c09875625bb9a84c.zip |
Chmod +x examples, and add shebang lines
Diffstat (limited to 'examples/pubsub_events.py')
-rwxr-xr-x[-rw-r--r--] | examples/pubsub_events.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/pubsub_events.py b/examples/pubsub_events.py index 0dfb6c65..12c33a76 100644..100755 --- a/examples/pubsub_events.py +++ b/examples/pubsub_events.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + import sys import logging import getpass @@ -77,7 +80,7 @@ class PubsubEvents(sleekxmpp.ClientXMPP): """Handle receiving a node deletion event.""" print('Deleted node %s' % ( msg['pubsub_event']['delete']['node'])) - + def _config(self, msg): """Handle receiving a node configuration event.""" print('Configured node %s:' % ( |