have karma module use the normal, non-alias-like command ('rank' rather than '!rank')

This commit is contained in:
Brian S. Stephan 2010-10-28 20:15:48 -05:00
parent 352b9e1830
commit 0dfe8bcdd6
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ class Karma(Module):
pattern = "(?:([a-zA-Z0-9_'.,]+)|\(([a-zA-Z0-9_'., ]+)\))"
karmapattern = '^' + pattern + '(\+\+|--)'
querypattern = '^!rank\s+(.*)'
querypattern = '^rank\s+(.*)'
self.karmare = re.compile(karmapattern)
self.queryre = re.compile(querypattern)