diff options
author | ankonym <ankonym@gmail.com> | 2015-10-06 17:33:03 +0200 |
---|---|---|
committer | ankonym <ankonym@gmail.com> | 2015-10-06 17:33:03 +0200 |
commit | 0ef9035c62358ec3f74de3591a9580e5bd426422 (patch) | |
tree | 49f1b2756666c9115f86c85a38b5609e0118d525 /lib/tasks | |
parent | be79269c15a8f9f936f598210ab10baf0c992587 (diff) |
Cleaned up invite code output for platform tests
This still had some test output that gets in the way of easy printing and a LEAP platform test
Diffstat (limited to 'lib/tasks')
-rw-r--r-- | lib/tasks/invite_code.rake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/invite_code.rake b/lib/tasks/invite_code.rake index 71950b9..0404764 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} Code generated with #{x.max_uses} uses." + puts "#{x.invite_code}" end end |