diff options
author | Tom Gilbert <tom@linuxbrit.co.uk> | 2007-04-04 08:57:37 +0000 |
---|---|---|
committer | Tom Gilbert <tom@linuxbrit.co.uk> | 2007-04-04 08:57:37 +0000 |
commit | a7b2718fb0ee7309fa73458b660112e046cf957e (patch) | |
tree | 68648c1fc16eaa13182bea48a1f793718b5d4534 /data/rbot/plugins/games | |
parent | b8dae8bd30e7d7e8bd710f046e28bde6c25e2fd4 (diff) |
fix "warning: don't put space before argument parentheses"
Diffstat (limited to 'data/rbot/plugins/games')
-rw-r--r-- | data/rbot/plugins/games/quiz.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/rbot/plugins/games/quiz.rb b/data/rbot/plugins/games/quiz.rb index 56b1bca6..d73de90e 100644 --- a/data/rbot/plugins/games/quiz.rb +++ b/data/rbot/plugins/games/quiz.rb @@ -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 |