mirror of
https://github.com/Hopiu/django-select2.git
synced 2026-04-07 23:40:57 +00:00
Fixed bug in minify pre-setup function
Collect all files from collection instead of last one only
This commit is contained in:
parent
a57cb59436
commit
b19f166992
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
|
@ -35,7 +35,7 @@ def minify(files, outfile, ftype):
|
|||
|
||||
for filename in files:
|
||||
with io.open(getPkgPath() + filename, 'r', encoding='utf8') as f:
|
||||
content = f.read()
|
||||
content = content + '\n' + f.read()
|
||||
|
||||
data = {
|
||||
'code': content,
|
||||
|
|
|
|||
Loading…
Reference in a new issue