summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorankonym <ankonym@gmail.com>2015-10-06 18:40:14 +0200
committerankonym <ankonym@gmail.com>2015-10-06 18:40:14 +0200
commitd1b16b0dbc868e45f4910b1b3365679b6f18562f (patch)
tree9793e4a588bdc7561fec202d5050c4f770f4e292 /lib
parent0ef9035c62358ec3f74de3591a9580e5bd426422 (diff)
Small code cleanup in the rake task
Diffstat (limited to 'lib')
-rw-r--r--lib/tasks/invite_code.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/invite_code.rake b/lib/tasks/invite_code.rake
index 0404764..53c39b9 100644
--- a/lib/tasks/invite_code.rake
+++ b/lib/tasks/invite_code.rake
@@ -18,7 +18,7 @@ task :generate_invites, [:n, :u] => :environment do |task, args|
x = InviteCode.new
x.max_uses = max_uses
x.save
- puts "#{x.invite_code}"
+ puts x.invite_code
end
end