summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>1996-12-11 21:40:04 (GMT)
committerBarry Warsaw <barry@python.org>1996-12-11 21:40:04 (GMT)
commit66e7f3ac439550473923703ee714cb8b8ca15c18 (patch)
tree2c9f16301920e8d730359317361b90a546b68369
parent7bd9fbdea2cc1acfe8cc1dac4e0f2859b4618bbe (diff)
downloadcpython-66e7f3ac439550473923703ee714cb8b8ca15c18.zip
cpython-66e7f3ac439550473923703ee714cb8b8ca15c18.tar.gz
cpython-66e7f3ac439550473923703ee714cb8b8ca15c18.tar.bz2
minor formatting nit
-rw-r--r--Lib/test/test_rgbimg.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_rgbimg.py b/Lib/test/test_rgbimg.py
index cdadc66..52814b4 100644
--- a/Lib/test/test_rgbimg.py
+++ b/Lib/test/test_rgbimg.py
@@ -23,7 +23,8 @@ def testimg(rgb_file, raw_file):
raise error, 'bad image length'
raw = open(raw_file, 'r').read()
if rgb != raw:
- raise error, 'images don\'t match for '+rgb_file+' and '+raw_file
+ raise error, \
+ 'images don\'t match for '+rgb_file+' and '+raw_file
for depth in [1, 3, 4]:
rgbimg.longstoimage(rgb, width, height, depth, '@.rgb')
os.unlink('@.rgb')