Commit c803ee378dc8b9726400190653af75b3e6eb250d

Authored by Rafael Martins
Committed by Daniela Feitosa
1 parent 91f8aa3e

Changed double quotes into single quotes for Postgres compatibility

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
script/sample-profiles
... ... @@ -98,7 +98,7 @@ end
98 98 done
99 99  
100 100 print "Activating users: "
101   -User.all(:conditions => ['login NOT LIKE "%%_template"']).each do |user|
  101 +User.all(:conditions => ["login NOT LIKE '%%_template'"]).each do |user|
102 102 user.activate
103 103 print '.'
104 104 end
... ...