diff options
Diffstat (limited to 'Lib/plat-irix5/torgb.py')
-rwxr-xr-x | Lib/plat-irix5/torgb.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Lib/plat-irix5/torgb.py b/Lib/plat-irix5/torgb.py index 7cc3b47..c9fee0d 100755 --- a/Lib/plat-irix5/torgb.py +++ b/Lib/plat-irix5/torgb.py @@ -70,7 +70,8 @@ def torgb(filename): def _torgb(filename, temps): if filename[-2:] == '.Z': - fname = tempfile.mktemp() + (fd, fname) = tempfile.mkstemp() + os.close(fd) temps.append(fname) sts = uncompress.copy(filename, fname) if sts: @@ -91,7 +92,8 @@ def _torgb(filename, temps): if ftype is None or not table.has_key(ftype): raise error, \ filename + ': unsupported image file type ' + `ftype` - temp = tempfile.mktemp() + (fd, temp) = tempfile.mktemp() + os.close(fd) sts = table[ftype].copy(fname, temp) if sts: raise error, filename + ': conversion to rgb failed' |