Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--io_export_directx_x.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_export_directx_x.py b/io_export_directx_x.py
index 76a60d42..1e521d00 100644
--- a/io_export_directx_x.py
+++ b/io_export_directx_x.py
@@ -74,7 +74,7 @@ def LegalName(Name):
import string
- NewName = ReplaceSet(Name, string.punctuation, "_")
+ NewName = ReplaceSet(Name, string.punctuation + " ", "_")
if NewName[0].isdigit() or NewName in ["ARRAY",
"DWORD",
"UCHAR",