mirror of
https://github.com/Hopiu/django-select2.git
synced 2026-03-21 15:50:27 +00:00
return list of css links instead of generator
This commit is contained in:
parent
5f9477b664
commit
bfee65fc95
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