summaryrefslogtreecommitdiffstats
path: root/modules/ping.py
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2013-07-25 19:26:52 +0200
committerAlexander Sulfrian <alexander@sulfrian.net>2015-12-03 03:29:37 +0100
commitf3b86ed2d5bce85b3b9c27eb949cd88cf7d526bc (patch)
treea187725f5ec7f1c67d2b9a471b4000ad40a16b04 /modules/ping.py
parent4b905606692a2f147946505abe6ade1c241d1000 (diff)
downloadbot-f3b86ed2d5bce85b3b9c27eb949cd88cf7d526bc.tar.gz
bot-f3b86ed2d5bce85b3b9c27eb949cd88cf7d526bc.tar.bz2
bot-f3b86ed2d5bce85b3b9c27eb949cd88cf7d526bc.zip
fix indentation and trailing whitespaces
Diffstat (limited to 'modules/ping.py')
-rwxr-xr-xmodules/ping.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/modules/ping.py b/modules/ping.py
index 23219ac..9ce7429 100755
--- a/modules/ping.py
+++ b/modules/ping.py
@@ -7,17 +7,17 @@ About: http://inamidst.com/phenny/
import random
-def hello(phenny, input):
- greeting = random.choice(('Hi', 'Hey', 'Hello'))
- punctuation = random.choice(('', '!'))
- phenny.say(greeting + ' ' + input.nick + punctuation)
+def hello(phenny, input):
+ greeting = random.choice(('Hi', 'Hey', 'Hello'))
+ punctuation = random.choice(('', '!'))
+ phenny.say(greeting + ' ' + input.nick + punctuation)
hello.rule = r'(?i)(hi|hello|hey) $nickname[ \t]*$'
-def interjection(phenny, input):
- phenny.say(input.nick + '!')
+def interjection(phenny, input):
+ phenny.say(input.nick + '!')
interjection.rule = r'$nickname!'
interjection.priority = 'high'
interjection.thread = False
-if __name__ == '__main__':
- print __doc__.strip()
+if __name__ == '__main__':
+ print __doc__.strip()