]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blobdiff - data/rbot/contrib/plugins/stats.rb
remove whitespace
[user/henk/code/ruby/rbot.git] / data / rbot / contrib / plugins / stats.rb
index 4cafbbe973c848605fdbdc8bc882ef26feb3c5cd..97f42bd3e5f1d1f018349c905d5c014ad9e738b7 100644 (file)
 
 class StatsPlugin < Plugin
 
-       @@commands = { 
+       @@commands = {
                "stats" => "handle_stats",
                "track" => "handle_track",
-               "untrack" => "handle_untrack", 
+               "untrack" => "handle_untrack",
                "listtokens" => "handle_listtokens",
                "rmabuser" => "handle_rmabuser"
        }
@@ -61,7 +61,7 @@ class StatsPlugin < Plugin
                        m.reply "What a crazy fool!  Did you mean |help stats?"
                        return
                end
-               
+
                meth = self.method(@@commands[m.plugin])
                meth.call(m)
        end