summaryrefslogtreecommitdiff
path: root/plugins/test.py
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2011-11-12 16:51:24 +0100
committerFlorent Le Coz <louiz@louiz.org>2011-11-12 16:51:24 +0100
commite67e22766f0da948ee9f310d29278371ef9b0563 (patch)
tree736b13f2f7f217ef94bec95404d7fa8a87c16d87 /plugins/test.py
parent75ae1772e49a59b373c26d1c942f25edd473921c (diff)
parent05ef3594894e0bcbe80b98e81c2a2659ea01855f (diff)
downloadpoezio-e67e22766f0da948ee9f310d29278371ef9b0563.tar.gz
poezio-e67e22766f0da948ee9f310d29278371ef9b0563.tar.bz2
poezio-e67e22766f0da948ee9f310d29278371ef9b0563.tar.xz
poezio-e67e22766f0da948ee9f310d29278371ef9b0563.zip
Merge branch 'master' of http://git.louiz.org/poezio
Diffstat (limited to 'plugins/test.py')
-rw-r--r--plugins/test.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/plugins/test.py b/plugins/test.py
index 0d5cdb0a..13ba1e9c 100644
--- a/plugins/test.py
+++ b/plugins/test.py
@@ -5,14 +5,10 @@ class Plugin(BasePlugin):
self.add_command('plugintest', self.command_plugintest, 'Test command')
self.add_event_handler('message', self.on_message)
self.core.information("Plugin loaded")
- self.core.connect('enter', self.on_enter)
def cleanup(self):
self.core.information("Plugin unloaded")
- def on_enter(self, line):
- self.core.information('Text sent: {}'.format(line))
-
def on_message(self, message):
self.core.information("Test plugin received message: {}".format(message))