diff options
author | Florent Le Coz <louiz@louiz.org> | 2013-05-06 21:48:18 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2013-05-06 21:48:18 +0200 |
commit | 2ad793d367a37dcb0c5da42ab8c64547d1d0e9de (patch) | |
tree | 1a40901e5e5ace9d1cbf515b5befe45d8752663a | |
parent | 12dd02b5c5dca175f0808dc32687d1429d0c1190 (diff) | |
download | poezio-2ad793d367a37dcb0c5da42ab8c64547d1d0e9de.tar.gz poezio-2ad793d367a37dcb0c5da42ab8c64547d1d0e9de.tar.bz2 poezio-2ad793d367a37dcb0c5da42ab8c64547d1d0e9de.tar.xz poezio-2ad793d367a37dcb0c5da42ab8c64547d1d0e9de.zip |
The name is poezio, not Poezio
-rw-r--r-- | plugins/spam.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/spam.py b/plugins/spam.py index ce989f11..e7a93e44 100644 --- a/plugins/spam.py +++ b/plugins/spam.py @@ -14,7 +14,7 @@ You only have to load the plugin: Configuration ------------- [spam] -ad = I’m a happy Poezio user. Get it at http://poezio.eu +ad = I’m a happy poezio user. Get it at http://poezio.eu """ @@ -27,4 +27,4 @@ class Plugin(BasePlugin): self.api.add_event_handler('private_say', self.advert) def advert(self, msg, tab): - msg['body'] = "%s\n\n%s" % (msg['body'], self.config.get("ad", "Sent from Poezio")) + msg['body'] = "%s\n\n%s" % (msg['body'], self.config.get("ad", "Sent from poezio")) |