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.py2
1 files changed, 1 insertions, 1 deletions
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