mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-21 13:47:51 -06:00
Output arrays of files rather than a single file
This is needed because the version upgrade system now allows for a version upgrader to output any number of files. Contributes to issue CURA-844.
This commit is contained in:
parent
967591bccb
commit
af86375ba3
3 changed files with 3 additions and 3 deletions
|
@ -130,4 +130,4 @@ class Profile:
|
|||
|
||||
output = io.StringIO()
|
||||
config.write(output)
|
||||
return self._filename, output.getvalue()
|
||||
return [self._filename], [output.getvalue()]
|
Loading…
Add table
Add a link
Reference in a new issue