Fix typo
This commit is contained in:
parent
26e5fc5ca9
commit
de2aa036df
@ -268,7 +268,7 @@ class TempFilePath(str):
|
|||||||
def __new__(cls, path=None):
|
def __new__(cls, path=None):
|
||||||
if path is None:
|
if path is None:
|
||||||
fd, path = tempfile.mkstemp()
|
fd, path = tempfile.mkstemp()
|
||||||
os.remove(fd)
|
os.close(fd)
|
||||||
logging.debug('TempFilePath created %r' % path)
|
logging.debug('TempFilePath created %r' % path)
|
||||||
return str.__new__(cls, path)
|
return str.__new__(cls, path)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user