]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/commitdiff
fix "warning: don't put space before argument parentheses"
authorTom Gilbert <tom@linuxbrit.co.uk>
Wed, 4 Apr 2007 08:57:37 +0000 (08:57 +0000)
committerTom Gilbert <tom@linuxbrit.co.uk>
Wed, 4 Apr 2007 08:57:37 +0000 (08:57 +0000)
data/rbot/plugins/games/quiz.rb

index 56b1bca64ad0ce7536d5edee2ba3dc1cdc272203..d73de90e0fced58b4dfef798a27c898b7605fc7c 100644 (file)
@@ -651,9 +651,9 @@ class QuizPlugin < Plugin
 
 
   def cmd_refresh( m, params )
-    q = create_quiz ( m.channel )
+    q = create_quiz(m.channel)
     q.questions.clear
-    fetch_data ( m )
+    fetch_data(m)
     cmd_quiz( m, params )
   end