summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorAndrewMurrell <amurrel@purdue.edu>2014-04-28 00:37:13 -0400
committerAndrewMurrell <amurrel@purdue.edu>2014-04-28 00:37:13 -0400
commitaedb959b027e10290a344495b28047437c28e1aa (patch)
tree0f1c605f91f77c3300a9a9929e2ac8fe48805147 /app
parente5f603c8c463e09fee5931d7e00e94e14b819347 (diff)
Fixing Errors in lib and hooks into lib
Diffstat (limited to 'app')
-rw-r--r--app/models/tournament_stage.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/tournament_stage.rb b/app/models/tournament_stage.rb
index 9352137..caf5a8a 100644
--- a/app/models/tournament_stage.rb
+++ b/app/models/tournament_stage.rb
@@ -40,6 +40,6 @@ class TournamentStage < ActiveRecord::Base
end
def seeding
- @seeding ||= "Seeding::#{self.seeding_method.camelcase}".constantize.new(self)
+ @seeding ||= "Seeding::#{self.seeding_method.camelcase}".constantize
end
end