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.
@@ -97,4 +97,4 @@ class MachineInstance:
output = io.StringIO()
config.write(output)
- return self._filename, output.getvalue()
+ return [self._filename], [output.getvalue()]
@@ -77,4 +77,4 @@ class Preferences:
#Output the result as a string.
self._config.write(output)
@@ -130,4 +130,4 @@ class Profile: