Index: doc/theses/andrew_beach_MMath/code/cond-catch.py
===================================================================
--- doc/theses/andrew_beach_MMath/code/cond-catch.py	(revision 678f259e022d6bf210462dbdfedd2efab0b1a302)
+++ doc/theses/andrew_beach_MMath/code/cond-catch.py	(revision ce9f9d49a2f8e613169e8a0385563024beea05b3)
@@ -32,5 +32,5 @@
 
     end_time = thread_time_ns()
-    print('Run-Time (s) {:.1f}:'.format((end_time - start_time) / 1_000_000_000.))
+    print('Run-Time (s): {:.1f}'.format((end_time - start_time) / 1_000_000_000.))
 
 
Index: doc/theses/andrew_beach_MMath/code/fixup-empty.py
===================================================================
--- doc/theses/andrew_beach_MMath/code/fixup-empty.py	(revision 678f259e022d6bf210462dbdfedd2efab0b1a302)
+++ doc/theses/andrew_beach_MMath/code/fixup-empty.py	(revision ce9f9d49a2f8e613169e8a0385563024beea05b3)
@@ -25,5 +25,5 @@
 
     end_time = thread_time_ns()
-    print('Run-Time (s) {:.1f}:'.format((end_time - start_time) / 1_000_000_000.))
+    print('Run-Time (s): {:.1f}'.format((end_time - start_time) / 1_000_000_000.))
 
 
Index: doc/theses/andrew_beach_MMath/code/fixup-other.py
===================================================================
--- doc/theses/andrew_beach_MMath/code/fixup-other.py	(revision 678f259e022d6bf210462dbdfedd2efab0b1a302)
+++ doc/theses/andrew_beach_MMath/code/fixup-other.py	(revision ce9f9d49a2f8e613169e8a0385563024beea05b3)
@@ -27,5 +27,5 @@
 
     end_time = thread_time_ns()
-    print('Run-Time (s) {:.1f}:'.format((end_time - start_time) / 1_000_000_000.))
+    print('Run-Time (s): {:.1f}'.format((end_time - start_time) / 1_000_000_000.))
 
 
Index: doc/theses/andrew_beach_MMath/code/run.sh
===================================================================
--- doc/theses/andrew_beach_MMath/code/run.sh	(revision 678f259e022d6bf210462dbdfedd2efab0b1a302)
+++ doc/theses/andrew_beach_MMath/code/run.sh	(revision ce9f9d49a2f8e613169e8a0385563024beea05b3)
@@ -1,6 +1,6 @@
 #!/usr/bin/env bash
 
-readonly ALL_TESTS=(raise-{empty,detor,finally,other} try-{catch,finally} cond-match-{all,none} \
-		    raise-{fixup-empty,fixup-other})
+readonly ALL_TESTS=(raise-{empty,detor,finally,other} try-{catch,finally} \
+			cond-match-{all,none} fixup-{empty,other})
 
 gen-file-name() (
@@ -18,5 +18,4 @@
 )
 
-#readonly N=${1:-5}
 readonly N=${1:-1}
 readonly OUT_FILE=$(gen-file-name ${2:-run-%-$N})
Index: doc/theses/andrew_beach_MMath/code/throw-empty.py
===================================================================
--- doc/theses/andrew_beach_MMath/code/throw-empty.py	(revision 678f259e022d6bf210462dbdfedd2efab0b1a302)
+++ doc/theses/andrew_beach_MMath/code/throw-empty.py	(revision ce9f9d49a2f8e613169e8a0385563024beea05b3)
@@ -33,5 +33,5 @@
 
     end_time = thread_time_ns()
-    print('Run-Time (s) {:.1f}:'.format((end_time - start_time) / 1_000_000_000.))
+    print('Run-Time (s): {:.1f}'.format((end_time - start_time) / 1_000_000_000.))
 
 
Index: doc/theses/andrew_beach_MMath/code/throw-finally.py
===================================================================
--- doc/theses/andrew_beach_MMath/code/throw-finally.py	(revision 678f259e022d6bf210462dbdfedd2efab0b1a302)
+++ doc/theses/andrew_beach_MMath/code/throw-finally.py	(revision ce9f9d49a2f8e613169e8a0385563024beea05b3)
@@ -36,5 +36,5 @@
 
     end_time = thread_time_ns()
-    print('Run-Time (s) {:.1f}:'.format((end_time - start_time) / 1_000_000_000.))
+    print('Run-Time (s): {:.1f}'.format((end_time - start_time) / 1_000_000_000.))
 
 
Index: doc/theses/andrew_beach_MMath/code/throw-other.py
===================================================================
--- doc/theses/andrew_beach_MMath/code/throw-other.py	(revision 678f259e022d6bf210462dbdfedd2efab0b1a302)
+++ doc/theses/andrew_beach_MMath/code/throw-other.py	(revision ce9f9d49a2f8e613169e8a0385563024beea05b3)
@@ -40,5 +40,5 @@
 
     end_time = thread_time_ns()
-    print('Run-Time (s) {:.1f}:'.format((end_time - start_time) / 1_000_000_000.))
+    print('Run-Time (s): {:.1f}'.format((end_time - start_time) / 1_000_000_000.))
 
 
Index: doc/theses/andrew_beach_MMath/code/throw-with.py
===================================================================
--- doc/theses/andrew_beach_MMath/code/throw-with.py	(revision 678f259e022d6bf210462dbdfedd2efab0b1a302)
+++ doc/theses/andrew_beach_MMath/code/throw-with.py	(revision ce9f9d49a2f8e613169e8a0385563024beea05b3)
@@ -43,5 +43,5 @@
 
     end_time = thread_time_ns()
-    print('Run-Time (s) {:.1f}:'.format((end_time - start_time) / 1_000_000_000.))
+    print('Run-Time (s): {:.1f}'.format((end_time - start_time) / 1_000_000_000.))
 
 
Index: doc/theses/andrew_beach_MMath/code/try-catch.py
===================================================================
--- doc/theses/andrew_beach_MMath/code/try-catch.py	(revision 678f259e022d6bf210462dbdfedd2efab0b1a302)
+++ doc/theses/andrew_beach_MMath/code/try-catch.py	(revision ce9f9d49a2f8e613169e8a0385563024beea05b3)
@@ -23,5 +23,5 @@
 
     end_time = thread_time_ns()
-    print('Run-Time (s) {:.1f}:'.format((end_time - start_time) / 1_000_000_000.))
+    print('Run-Time (s): {:.1f}'.format((end_time - start_time) / 1_000_000_000.))
 
 
Index: doc/theses/andrew_beach_MMath/code/try-finally.py
===================================================================
--- doc/theses/andrew_beach_MMath/code/try-finally.py	(revision 678f259e022d6bf210462dbdfedd2efab0b1a302)
+++ doc/theses/andrew_beach_MMath/code/try-finally.py	(revision ce9f9d49a2f8e613169e8a0385563024beea05b3)
@@ -22,5 +22,5 @@
 
     end_time = thread_time_ns()
-    print('Run-Time (s) {:.1f}:'.format((end_time - start_time) / 1_000_000_000.))
+    print('Run-Time (s): {:.1f}'.format((end_time - start_time) / 1_000_000_000.))
 
 
