Navigation Menu

Skip to content

Commit

Permalink
quote correctly
Browse files Browse the repository at this point in the history
git-svn-id: http://gdata-ruby.rubyforge.org/svn@7 3d76ca7b-2e8e-4910-8bb0-bc18f4d68cdf
  • Loading branch information
dion committed May 14, 2007
1 parent 1bceddc commit 5b1816b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/gdata/blogger.rb
Expand Up @@ -29,7 +29,7 @@ def enclosure?
def add_enclosure(enclosure_url, enclosure_length)
raise "An enclosure has already been added to this entry" if enclosure?

entry.search('//entry').append(qq|<link rel="enclosure" type="audio/mpeg" title="MP3" href="#{enclosure_url}" length="#{enclosure_length}" />|)
entry.search('//entry').append(%Q{<link rel="enclosure" type="audio/mpeg" title="MP3" href="#{enclosure_url}" length="#{enclosure_length}" />})
save_entry
end

Expand Down

0 comments on commit 5b1816b

Please sign in to comment.