diff --git a/willie/modules/lmgtfy.py b/willie/modules/lmgtfy.py index ae90963e93..2f32185d8e 100644 --- a/willie/modules/lmgtfy.py +++ b/willie/modules/lmgtfy.py @@ -6,14 +6,14 @@ http://willie.dftba.net/ """ -def issue(willie, trigger): +def googleit(willie, trigger): """Let me just... google that for you.""" #No input if not trigger.group(2): return willie.say('http://google.com/') willie.say('http://lmgtfy.com/?q='+trigger.group(2).replace(' ','+')) -issue.commands = ['lmgtfy','lmgify','gify','gtfy'] -issue.priority = 'medium' +googleit.commands = ['lmgtfy','lmgify','gify','gtfy'] +googleit.priority = 'medium' if __name__ == '__main__': print __doc__.strip()