Skip to content

Commit

Permalink
Changed != prefix to just = for extracted partials in haml
Browse files Browse the repository at this point in the history
  • Loading branch information
drnic committed Mar 4, 2010
1 parent 32b3d88 commit 7b31735
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Support/bin/create_partial_from_selection.rb
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

# Return the new render :partial line
if current_file.extension == "haml"
print "#{identing}!= render :partial => '#{partial_name}'\n"
print "#{identing}= render :partial => '#{partial_name}'\n"
else
print "#{identing}<%= render :partial => '#{partial_name}' %>\n"
end
Expand Down

0 comments on commit 7b31735

Please sign in to comment.