[Python-checkins] python/dist/src/Lib/plat-irix6 torgb.py,1.4,1.5
gvanrossum@users.sourceforge.net
gvanrossum@users.sourceforge.net
Fri, 09 Aug 2002 17:18:01 -0700
Update of /cvsroot/python/python/dist/src/Lib/plat-irix6
In directory usw-pr-cvs1:/tmp/cvs-serv18550/plat-irix6
Modified Files:
torgb.py
Log Message:
Fix a typo in the mktemp -> mkstemp patch.
Index: torgb.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-irix6/torgb.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** torgb.py 9 Aug 2002 16:37:35 -0000 1.4
--- torgb.py 10 Aug 2002 00:17:59 -0000 1.5
***************
*** 93,97 ****
raise error, \
filename + ': unsupported image file type ' + `ftype`
! (fd, temp) = tempfile.mktemp()
os.close(fd)
sts = table[ftype].copy(fname, temp)
--- 93,97 ----
raise error, \
filename + ': unsupported image file type ' + `ftype`
! (fd, temp) = tempfile.mkstemp()
os.close(fd)
sts = table[ftype].copy(fname, temp)