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

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey de l'Arago <joeydelarago@gmail.com>2022-01-31 15:29:23 +0300
committerGitHub <noreply@github.com>2022-01-31 15:29:23 +0300
commit7479aafe13427905188b6893572bb0a5374384a5 (patch)
tree488fe44bf1e39d8fbe646839dd06e8613f105f3d /scripts
parent0b4568d687b72bdca19f0628788b55f5d1416937 (diff)
Fix incorrect comment
Co-authored-by: Ghostkeeper <Ghostkeeper@users.noreply.github.com>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/obj_trimmer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/obj_trimmer.py b/scripts/obj_trimmer.py
index 5f1de29511..02d3351526 100644
--- a/scripts/obj_trimmer.py
+++ b/scripts/obj_trimmer.py
@@ -30,7 +30,7 @@ def trim_lines(in_obj, out_obj):
def trim_line(line: str) -> Optional[str]:
- # Discards all rows that are not a vertex ("v"), face ("f") or vertex texture ("v")
+ # Discards all rows that are not a vertex ("v"), face ("f") or vertex texture ("vt")
values = line.split()
if values[0] == "vt":