summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_rotor.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_rotor.py')
-rw-r--r--Lib/test/test_rotor.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_rotor.py b/Lib/test/test_rotor.py
index eeec55a..16a7dcd 100644
--- a/Lib/test/test_rotor.py
+++ b/Lib/test/test_rotor.py
@@ -13,9 +13,9 @@ A = 'spam and eggs'
B = 'cheese shop'
a = r.encrypt(A)
-print `a`
+print repr(a)
b = r.encryptmore(B)
-print `b`
+print repr(b)
A1 = r.decrypt(a)
print A1