summaryrefslogtreecommitdiff
path: root/papillon/polls/forms.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2016-03-25 18:39:21 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2016-03-25 18:39:21 +0100
commit3fcdf69304580650c6244165aae0b1fc46221cff (patch)
tree0fd3bc3526ee732faa9cc6d30a160e6dbc3e3d2a /papillon/polls/forms.py
parent68eaa550ed54678bc2855f5a45d58073dba59a2d (diff)
downloadPapillon-3fcdf69304580650c6244165aae0b1fc46221cff.tar.bz2
Papillon-3fcdf69304580650c6244165aae0b1fc46221cff.zip
Fix static / media mix
Diffstat (limited to 'papillon/polls/forms.py')
-rw-r--r--papillon/polls/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/papillon/polls/forms.py b/papillon/polls/forms.py
index b97c966..359410d 100644
--- a/papillon/polls/forms.py
+++ b/papillon/polls/forms.py
@@ -37,7 +37,7 @@ class TextareaWidget(forms.Textarea):
"""
class Media:
js = ["%stiny_mce.js" % settings.TINYMCE_URL,
- "%stextareas.js" % settings.MEDIA_URL]
+ "%stextareas.js" % settings.STATIC_URL]
class PollForm(forms.ModelForm):