Oops.  Of course, print b should also be print `b`. :-(
diff --git a/Lib/test/test_rotor.py b/Lib/test/test_rotor.py
index 99724bc..a5c02aa 100644
--- a/Lib/test/test_rotor.py
+++ b/Lib/test/test_rotor.py
@@ -9,7 +9,7 @@
 a = r.encrypt(A)
 print `a`
 b = r.encryptmore(B)
-print b
+print `b`
 
 A1 = r.decrypt(a)
 print A1