summaryrefslogtreecommitdiffstats
path: root/modules/dict.py
diff options
context:
space:
mode:
authorSean B. Palmer <sbp@aldebaran.local>2011-06-17 16:50:21 +0100
committerSean B. Palmer <sbp@aldebaran.local>2011-06-17 16:50:21 +0100
commit5261461f70ccd069768033edfa056c0e24c75131 (patch)
treef55aec64ede4fa6945913de1d37113f02164017a /modules/dict.py
parent12c8cd07f52883299ed628752b580462c31ce9f1 (diff)
parentbbd2c7f94320a1e831c58acaac3a361b71caefea (diff)
downloadbot-5261461f70ccd069768033edfa056c0e24c75131.tar.gz
bot-5261461f70ccd069768033edfa056c0e24c75131.tar.bz2
bot-5261461f70ccd069768033edfa056c0e24c75131.zip
Merge branch 'master' of github.com:sbp/phenny
Diffstat (limited to 'modules/dict.py')
-rwxr-xr-xmodules/dict.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/dict.py b/modules/dict.py
index 125f686..8f13e99 100755
--- a/modules/dict.py
+++ b/modules/dict.py
@@ -22,6 +22,8 @@ r_info = re.compile(
)
def dict(phenny, input):
+ if not input.group(2):
+ return phenny.reply("Nothing to define.")
word = input.group(2)
word = urllib.quote(word.encode('utf-8'))