Merge pull request #171 from GeyseR/patch-2

return list of css links instead of generator
This commit is contained in:
AppleGrew 2015-05-22 03:04:35 +05:30
commit 7850d52b64

View file

@ -53,4 +53,4 @@ def get_select2_css_libs(light=False):
css_files = ('css/select2.min.css',)
else:
css_files = ('css/all.min.css',)
return (django_select2_static(f) for f in css_files)
return [django_select2_static(f) for f in css_files]