[Python-checkins] python/dist/src/Lib toaiff.py,1.13,1.14

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Fri, 09 Aug 2002 17:15:38 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv17452

Modified Files:
	toaiff.py 
Log Message:
Fix a typo in the mktemp -> mkstemp patch.


Index: toaiff.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/toaiff.py,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** toaiff.py	9 Aug 2002 16:37:33 -0000	1.13
--- toaiff.py	10 Aug 2002 00:15:36 -0000	1.14
***************
*** 100,104 ****
          raise error, \
                  filename + ': unsupported audio file type ' + `ftype`
!     (fd, temp) = tempfile.mktemp()
      os.close(fd)
      temps.append(temp)
--- 100,104 ----
          raise error, \
                  filename + ': unsupported audio file type ' + `ftype`
!     (fd, temp) = tempfile.mkstemp()
      os.close(fd)
      temps.append(temp)