summaryrefslogtreecommitdiffstats
path: root/modules/admin.py
diff options
context:
space:
mode:
authorSean B. Palmer <http://inamidst.com/sbp/>2009-01-19 16:47:05 +0000
committerSean B. Palmer <http://inamidst.com/sbp/>2009-01-19 16:47:05 +0000
commit2299ef258897a32bfb883e47bcdc5dc212d46758 (patch)
treebe499071e41b7c4c6f1f8ad5cee566db8c2bf8f1 /modules/admin.py
parentf9aff27534df2efe64d50c01864925f6fe4cd746 (diff)
downloadbot-2299ef258897a32bfb883e47bcdc5dc212d46758.tar.gz
bot-2299ef258897a32bfb883e47bcdc5dc212d46758.tar.bz2
bot-2299ef258897a32bfb883e47bcdc5dc212d46758.zip
Small edits.
Diffstat (limited to 'modules/admin.py')
-rwxr-xr-xmodules/admin.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/admin.py b/modules/admin.py
index 3c3356f..b617c4c 100755
--- a/modules/admin.py
+++ b/modules/admin.py
@@ -43,9 +43,11 @@ quit.priority = 'low'
def msg(phenny, input):
# Can only be done in privmsg by an admin
if input.sender.startswith('#'): return
+ a, b = input.group(2), input.group(3)
+ if (not a) or (not b): return
if input.admin:
- phenny.msg(input.group(2), input.group(3))
-msg.rule = (['msg'], r'(#?\S+) (.*)')
+ phenny.msg(a, b)
+msg.rule = (['msg'], r'(#?\S+) (.+)')
msg.priority = 'low'
def me(phenny, input):