From 6ef9b5840f09dc8816cf054fc498ef7fa84c5465 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 28 Nov 2011 11:57:18 -0400 Subject: [PATCH] Removed extra slash in ajax-loader.gif URL fixes #15, thanks to IHLeanne for finding this one --- apps/sources/widgets.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/sources/widgets.py b/apps/sources/widgets.py index 665303e427..ae5bf8e1bc 100644 --- a/apps/sources/widgets.py +++ b/apps/sources/widgets.py @@ -28,9 +28,9 @@ class FamFamRadioSelect(forms.widgets.RadioSelect): def staging_file_thumbnail(staging_file): try: staging_file.get_valid_image() - template = u'%(string)s' + template = u'%(string)s' except: - template = u'%(string)s' + template = u'%(string)s' return mark_safe(template % { 'url': reverse('staging_file_preview', args=[staging_file.source.source_type, staging_file.source.pk, staging_file.id]),