summaryrefslogtreecommitdiffstats
path: root/modules/reload.py
diff options
context:
space:
mode:
authorSean B. Palmer <http://inamidst.com/sbp/>2008-03-01 21:07:23 +0000
committerSean B. Palmer <http://inamidst.com/sbp/>2008-03-01 21:07:23 +0000
commit1078791cb60d3ce4543d579fc07b9c0c145e8d10 (patch)
treea4169992239556f33b8154cb35a676c3bd8e8620 /modules/reload.py
parent3d920f431789ac53596933785b5fe61463335e3b (diff)
downloadbot-1078791cb60d3ce4543d579fc07b9c0c145e8d10.tar.gz
bot-1078791cb60d3ce4543d579fc07b9c0c145e8d10.tar.bz2
bot-1078791cb60d3ce4543d579fc07b9c0c145e8d10.zip
Some sundry fixes and improvements to the modules.
Diffstat (limited to 'modules/reload.py')
-rwxr-xr-xmodules/reload.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/reload.py b/modules/reload.py
index 2febcd2..6e65dd2 100755
--- a/modules/reload.py
+++ b/modules/reload.py
@@ -14,7 +14,7 @@ def f_reload(phenny, input):
if not input.admin: return
name = input.group(2)
- if not name:
+ if (not name) or (name == '*'):
phenny.setup()
return phenny.reply('done')