From 8a51025982628bf47a40d62757529c12693a2463 Mon Sep 17 00:00:00 2001
From: seanmajorpayne <seanmajorpayne@gmail.com>
Date: Tue, 27 Jun 2023 11:13:03 +0900
Subject: [PATCH] fixing stl _write_ascii to use proper stl format

---
 src/meshio/stl/_stl.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: python-meshio/src/meshio/stl/_stl.py
===================================================================
--- python-meshio.orig/src/meshio/stl/_stl.py	2024-10-24 10:39:14.033542887 +0200
+++ python-meshio/src/meshio/stl/_stl.py	2024-10-24 10:39:14.029542847 +0200
@@ -211,7 +211,7 @@
 
 def _write_ascii(filename, pts, normals):
     with open_file(filename, "w") as fh:
-        fh.write("solid\n")
+        fh.write("solid \n")
         for local_pts, normal in zip(pts, normals):
             out = (
                 "\n".join(
