From 6bcce7ca8eaf37055cdd20b5061507e5a4bc66fd Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Wed, 10 Feb 2016 15:05:36 +0100 Subject: [PATCH] Repair saving to removable drive Typo. Sorry. Contributes to issue CURA-611. --- .../RemovableDriveOutputDevice/RemovableDriveOutputDevice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):