From: Guido van Rossum Date: Mon, 18 Aug 1997 13:42:28 +0000 (+0000) Subject: Oops. Of course, print b should also be print `b`. :-( X-Git-Tag: v1.5a4~386 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ce320966616c6302858def177186bc7ab5eef2e1;p=python 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 99724bccef..a5c02aa48d 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