summaryrefslogtreecommitdiff
path: root/Lib/tempfile.py
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2001-02-19 15:34:10 +0000
committerJeremy Hylton <jeremy@alum.mit.edu>2001-02-19 15:34:10 +0000
commitca7d65d0905fc46655b9eea0c8de2b10b39cc171 (patch)
treea87ae719c02f5da5e8e795b90299b1c8fba29791 /Lib/tempfile.py
parent4674503639e3426d03f0b4884458da6293b9fd9d (diff)
downloadcpython-ca7d65d0905fc46655b9eea0c8de2b10b39cc171.tar.gz
fix long line
Diffstat (limited to 'Lib/tempfile.py')
-rw-r--r--Lib/tempfile.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/tempfile.py b/Lib/tempfile.py
index a503e7fe57..7d7f92415d 100644
--- a/Lib/tempfile.py
+++ b/Lib/tempfile.py
@@ -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: