# HG changeset patch # User Brian Neal # Date 1426949800 18000 # Node ID 6026396212571d5827481c0db8dec7e7e13180d9 # Parent d3f6e9cb1f39d3dbad2dc2dbdcdf1d3a4366d91d Tweak HTML for videos that are no longer found. diff -r d3f6e9cb1f39 -r 602639621257 oembed/management/commands/oembed_refresh.py --- a/oembed/management/commands/oembed_refresh.py Tue Mar 17 21:24:45 2015 -0500 +++ b/oembed/management/commands/oembed_refresh.py Sat Mar 21 09:56:40 2015 -0500 @@ -36,7 +36,8 @@ """Returns a string of HTML to be used when we can't retrieve the oEmbed data. """ - return u'

{title}

'.format(url=oembed.url, title=oembed.title) + return u'

Video: {title}

'.format( + url=oembed.url, title=oembed.title) def refresh_html(providers, oembed):