From: Eric S. Raymond Date: Fri, 9 Feb 2001 17:05:53 +0000 (+0000) Subject: joinfields -> join. X-Git-Tag: v2.1b1~434 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dbbbaf26969547b3cdd1b0eabc922e7d3f37cf99;p=thirdparty%2FPython%2Fcpython.git joinfields -> join. --- diff --git a/Lib/test/test_imgfile.py b/Lib/test/test_imgfile.py index 26f6186b83f2..e99b75873f30 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))