mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-05 21:13:58 -06:00
CuraApplication: Rename file --> file_name
'file' is a built-in function!
This commit is contained in:
parent
8dd91519a6
commit
b2da4894b1
1 changed files with 2 additions and 2 deletions
|
@ -719,8 +719,8 @@ class CuraApplication(QtApplication):
|
|||
if run_headless or self._engine.rootObjects:
|
||||
self.closeSplash()
|
||||
|
||||
for file in self.getCommandLineOption("file", []):
|
||||
self._openFile(file)
|
||||
for file_name in self.getCommandLineOption("file", []):
|
||||
self._openFile(file_name)
|
||||
for file_name in self._open_file_queue: #Open all the files that were queued up while plug-ins were loading.
|
||||
self._openFile(file_name)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue