mirror of
https://github.com/Hopiu/django-select2.git
synced 2026-04-30 01:44:43 +00:00
Merge pull request #171 from GeyseR/patch-2
return list of css links instead of generator
This commit is contained in:
commit
7850d52b64
1 changed files with 1 additions and 1 deletions
|
|
@ -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]
|
||||
|
|
|
|||
Loading…
Reference in a new issue