From ce320966616c6302858def177186bc7ab5eef2e1 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 18 Aug 1997 13:42:28 +0000 Subject: Oops. Of course, print b should also be print `b`. :-( --- Lib/test/test_rotor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ B = 'cheese shop' a = r.encrypt(A) print `a` b = r.encryptmore(B) -print b +print `b` A1 = r.decrypt(a) print A1 -- cgit v0.12