From 4476412821ef81e1d2c6869048477b70ab81f0bb Mon Sep 17 00:00:00 2001 From: mutantmonkey Date: Tue, 27 Mar 2012 23:23:44 -0400 Subject: [PATCH] linx: support capital letters in nicks --- modules/linx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/linx.py b/modules/linx.py index da5c1d8..cddd824 100644 --- a/modules/linx.py +++ b/modules/linx.py @@ -50,7 +50,7 @@ def lines(phenny, input): phenny.reply(req) -lines.rule = (['lines'], r'([a-z0-9\-_\\]+) (.*)') +lines.rule = (['lines'], r'([A-Za-z0-9\-_\\]+) (.*)') if __name__ == '__main__': print(__doc__.strip())