Browse Source

Should use .gcode.gz

Lipu Fei 6 years ago
parent
commit
cbc45bffd0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/GCodeGzReader/GCodeGzReader.py

+ 1 - 1
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: