]> granicus.if.org Git - python/commitdiff
Oops. Of course, print b should also be print `b`. :-(
authorGuido van Rossum <guido@python.org>
Mon, 18 Aug 1997 13:42:28 +0000 (13:42 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 18 Aug 1997 13:42:28 +0000 (13:42 +0000)
Lib/test/test_rotor.py

index 99724bccefae19e32567c76f1103215af1695098..a5c02aa48d9f65e34189bcaf829bd5ade345529b 100644 (file)
@@ -9,7 +9,7 @@ B = 'cheese shop'
 a = r.encrypt(A)
 print `a`
 b = r.encryptmore(B)
-print b
+print `b`
 
 A1 = r.decrypt(a)
 print A1