mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
CURA-5128 cleanup .gz and only leave .gcode.gz as Cura and Uranium now accept extensions with multiple periods
This commit is contained in:
parent
a0badf121a
commit
c2888529cb
3 changed files with 8 additions and 4 deletions
|
@ -19,7 +19,7 @@ class GCodeGzReader(MeshReader):
|
|||
|
||||
def __init__(self):
|
||||
super(GCodeGzReader, self).__init__()
|
||||
self._supported_extensions = [".gcode.gz", ".gz"]
|
||||
self._supported_extensions = [".gcode.gz"]
|
||||
|
||||
def read(self, file_name):
|
||||
with open(file_name, "rb") as file:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue