fix long line

This commit is contained in:
Jeremy Hylton 2001-02-19 15:34:10 +00:00
parent 17820c4f1b
commit c348cd7518
1 changed files with 2 additions and 1 deletions

View File

@ -41,7 +41,8 @@ def gettempdir():
filename = os.path.join(dir, testfile)
if os.name == 'posix':
try:
fd = os.open(filename, os.O_RDWR|os.O_CREAT|os.O_EXCL, 0700)
fd = os.open(filename,
os.O_RDWR | os.O_CREAT | os.O_EXCL, 0700)
except OSError:
pass
else: