aboutsummaryrefslogtreecommitdiffstats
path: root/checker/src/checker.py
diff options
context:
space:
mode:
Diffstat (limited to 'checker/src/checker.py')
-rw-r--r--checker/src/checker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/checker/src/checker.py b/checker/src/checker.py
index ebe3b8e..9a2044f 100644
--- a/checker/src/checker.py
+++ b/checker/src/checker.py
@@ -120,7 +120,7 @@ class STLDoctorChecker(BaseChecker):
else:
content = b"solid\n"
facet_count = rand.randint(4, 30)
- indent = b" " * rand.randint(1, 4)
+ indent = bytes([rand.choice(b"\t\n ") for i in range(rand.randint(1, 4))])
for fi in range(facet_count):
if malformed and randchoice == 0: # malformed by wrong keyword
content += indent * 1 + b"facet nornal "