Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhostkeeper <ghost_keeper+github@hotmail.com>2016-02-10 17:05:36 +0300
committerGhostkeeper <ghost_keeper+github@hotmail.com>2016-02-10 17:05:44 +0300
commit6bcce7ca8eaf37055cdd20b5061507e5a4bc66fd (patch)
tree4f5160c1c6a0cc320911980acc0436589dba66d3 /plugins/RemovableDriveOutputDevice
parent041fa2b3592e015eebe779169c9d7f4565b3a788 (diff)
Repair saving to removable drive
Typo. Sorry. Contributes to issue CURA-611.
Diffstat (limited to 'plugins/RemovableDriveOutputDevice')
-rw-r--r--plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py b/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py
index b1d6061848..f73ba46c85 100644
--- a/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py
+++ b/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py
@@ -37,7 +37,7 @@ class RemovableDriveOutputDevice(OutputDevice):
Logger.log("e", "There are no file formats available to write with!")
raise OutputDeviceError.WriteRequestFailedError()
writer = Application.getInstance().getMeshFileHandler().getWriterByMimeType(file_formats[0]["mime_type"]) #Just take the first file format available.
- extension = file_format[0]["extension"]
+ extension = file_formats[0]["extension"]
if file_name == None:
for n in BreadthFirstIterator(node):