mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-26 18:21:59 +00:00
Fix #2960.
This commit is contained in:
@@ -753,7 +753,7 @@ class Drawing(blenderbim.core.tool.Drawing):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def sanitise_filename(cls, name):
|
def sanitise_filename(cls, name):
|
||||||
return "".join(x for x in name if (x.isalnum() or x in "_- "))
|
return "".join(x for x in name if (x.isalnum() or x in "._- "))
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def get_default_drawing_resource_path(cls, resource):
|
def get_default_drawing_resource_path(cls, resource):
|
||||||
|
|||||||
Reference in New Issue
Block a user