summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rwxr-xr-xLib/test/test_array.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_array.py b/Lib/test/test_array.py
index 832f192..e95fac4 100755
--- a/Lib/test/test_array.py
+++ b/Lib/test/test_array.py
@@ -52,7 +52,7 @@ def testtype(type, example):
print 'array of %s converted to a list: ' % a.typecode, a.tolist()
if verbose:
print 'array of %s converted to a string: ' \
- % a.typecode, a.tostring()
+ % a.typecode, `a.tostring()`
main()