From 27b1dc53866b51d52b7cc8b132bbfac7b66cb0d4 Mon Sep 17 00:00:00 2001 From: Antonio de la Rosa Date: Mon, 7 Mar 2016 19:51:28 +0100 Subject: [PATCH] Little fix silly bug --- paramecio/citoplasma/urls.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/paramecio/citoplasma/urls.py b/paramecio/citoplasma/urls.py index 81fbc3b..3ee6c7a 100644 --- a/paramecio/citoplasma/urls.py +++ b/paramecio/citoplasma/urls.py @@ -48,8 +48,8 @@ else: def make_media_url(file_path): - return config.media_url+'media/'+file_path + return config.media_url+'/media/'+file_path def make_media_url_module(file_path, module): - return config.media_url+'media/'+module+'/'+file_path \ No newline at end of file + return config.media_url+'/media/'+module+'/'+file_path \ No newline at end of file