mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-18 10:26:29 +01:00
Fixed for requires
This commit is contained in:
parent
dd9955d457
commit
7fa5381448
1 changed files with 6 additions and 3 deletions
|
@ -250,7 +250,8 @@ class InstallData(Configs):
|
||||||
location=cache[5],
|
location=cache[5],
|
||||||
size_comp=cache[6],
|
size_comp=cache[6],
|
||||||
size_uncomp=cache[7],
|
size_uncomp=cache[7],
|
||||||
description=cache[8]
|
description=cache[8],
|
||||||
|
required=''
|
||||||
)
|
)
|
||||||
|
|
||||||
self.session.add(data)
|
self.session.add(data)
|
||||||
|
@ -336,7 +337,8 @@ class InstallData(Configs):
|
||||||
location=cache[5],
|
location=cache[5],
|
||||||
size_comp=cache[6],
|
size_comp=cache[6],
|
||||||
size_uncomp=cache[7],
|
size_uncomp=cache[7],
|
||||||
description=cache[8]
|
description=cache[8],
|
||||||
|
required='',
|
||||||
)
|
)
|
||||||
|
|
||||||
self.session.add(data)
|
self.session.add(data)
|
||||||
|
@ -512,7 +514,8 @@ class InstallData(Configs):
|
||||||
location=cache[5],
|
location=cache[5],
|
||||||
size_comp=cache[6],
|
size_comp=cache[6],
|
||||||
size_uncomp=cache[7],
|
size_uncomp=cache[7],
|
||||||
description=cache[8]
|
description=cache[8],
|
||||||
|
required=''
|
||||||
)
|
)
|
||||||
|
|
||||||
self.session.add(data)
|
self.session.add(data)
|
||||||
|
|
Loading…
Reference in a new issue