From c94b041fd1f746f1829a8e3724041d68b39a3fb2 Mon Sep 17 00:00:00 2001 From: Lingdong Huang Date: Sun, 27 Oct 2019 03:36:02 -0400 Subject: [PATCH] fix print statement --- linedraw.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linedraw.py b/linedraw.py index ac922de..65f270d 100644 --- a/linedraw.py +++ b/linedraw.py @@ -199,7 +199,7 @@ def sketch(path): f = open(export_path,'w') f.write(makesvg(lines)) f.close() - print("strokes.") + print(len(lines),"strokes.") print("done.") return lines