diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-02-09 17:05:53 (GMT) |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-02-09 17:05:53 (GMT) |
commit | dbbbaf26969547b3cdd1b0eabc922e7d3f37cf99 (patch) | |
tree | 20336a8700e3af420c9ad0b6259ff32ad139d307 /Lib/test/test_imgfile.py | |
parent | e37340edf21f207659d1b2dcccf354c1bd46d4b0 (diff) | |
download | cpython-dbbbaf26969547b3cdd1b0eabc922e7d3f37cf99.zip cpython-dbbbaf26969547b3cdd1b0eabc922e7d3f37cf99.tar.gz cpython-dbbbaf26969547b3cdd1b0eabc922e7d3f37cf99.tar.bz2 |
joinfields -> join.
Diffstat (limited to 'Lib/test/test_imgfile.py')
-rwxr-xr-x | Lib/test/test_imgfile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_imgfile.py b/Lib/test/test_imgfile.py index 26f6186..e99b758 100755 --- a/Lib/test/test_imgfile.py +++ b/Lib/test/test_imgfile.py @@ -48,7 +48,7 @@ def testimage(name): parts = ourname.split(os.sep) parts[-1] = name - name = os.sep.joinfields(parts) + name = os.sep.join(parts) sizes = imgfile.getsizes(name) if verbose: print 'Opening test image: %s, sizes: %s' % (name, str(sizes)) |