Commit c803ee378dc8b9726400190653af75b3e6eb250d
Committed by
Daniela Feitosa
1 parent
91f8aa3e
Exists in
master
and in
28 other branches
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,7 +98,7 @@ end | ||
98 | done | 98 | done |
99 | 99 | ||
100 | print "Activating users: " | 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 | user.activate | 102 | user.activate |
103 | print '.' | 103 | print '.' |
104 | end | 104 | end |