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:
authorLipu Fei <lipu.fei815@gmail.com>2018-04-25 17:43:59 +0300
committerLipu Fei <lipu.fei815@gmail.com>2018-04-25 17:43:59 +0300
commitcbc45bffd0eb30b57d4d9c853f2ba70e4a34e53e (patch)
tree930084c2a8000d990091a7d3f1671f7e11192eae /plugins/GCodeGzReader
parent236e2db47ed626cf1e85eb1df8f89c8dd8a82f3f (diff)
Should use .gcode.gz
Diffstat (limited to 'plugins/GCodeGzReader')
-rw-r--r--plugins/GCodeGzReader/GCodeGzReader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/GCodeGzReader/GCodeGzReader.py b/plugins/GCodeGzReader/GCodeGzReader.py
index fd9bf0ed84..36fcfad01a 100644
--- a/plugins/GCodeGzReader/GCodeGzReader.py
+++ b/plugins/GCodeGzReader/GCodeGzReader.py
@@ -15,7 +15,7 @@ class GCodeGzReader(MeshReader):
def __init__(self):
super().__init__()
- self._supported_extensions = [".gz"]
+ self._supported_extensions = [".gcode.gz"]
def read(self, file_name):
with open(file_name, "rb") as file: