diff --git a/summarize.py b/summarize.py
index 0e832b9..31e20d0 100755
--- a/summarize.py
+++ b/summarize.py
@@ -143,8 +143,6 @@ def main():
                 if args.verbose:
                     print(f"Refined: {ref}")
                 buffer += ref
-                if not args.verbose:
-                    print("#", end="")
             subs = buffer
         if args.verbose:
             print(subs)
@@ -159,8 +157,6 @@ def main():
             if args.verbose:
                 print(f"Presummary: {pre_summary}")
             firstpass += pre_summary
-            if not args.verbose:
-                print("#", end="")
         # And a summary of the whole
         summary = get_summary(firstpass)
         print(f"Summary: {summary}")