From 6d465620c3c9dca224ee60b15cdb51ba585614b0 Mon Sep 17 00:00:00 2001 From: Ian Weller Date: Jun 27 2008 05:58:17 +0000 Subject: reorder functions so they make more sense --- diff --git a/plugin.py b/plugin.py index ae4d24c..6bb2ae9 100644 --- a/plugin.py +++ b/plugin.py @@ -240,14 +240,6 @@ class Fedora(callbacks.Plugin): irc.reply(self._ticketer(baseurl, num)) rel = wrap(rel, ['int']) - def swedish(self, irc, msg, args): - """takes no arguments - - Humor mmcgrath.""" - irc.reply(str('kwack kwack')) - irc.reply(str('bork bork bork')) - swedish = wrap(swedish) - def bug(self, irc, msg, args, num): """ @@ -257,6 +249,14 @@ class Fedora(callbacks.Plugin): irc.reply(self._ticketer(baseurl, num)) bug = wrap(bug, ['int']) + def swedish(self, irc, msg, args): + """takes no arguments + + Humor mmcgrath.""" + irc.reply(str('kwack kwack')) + irc.reply(str('bork bork bork')) + swedish = wrap(swedish) + Class = Fedora