From: Jeremy Hylton Date: Mon, 19 Feb 2001 15:34:10 +0000 (+0000) Subject: fix long line X-Git-Tag: v2.1b1~290 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c348cd751846ddc8cec61c47928867e30d94549c;p=python fix long line --- 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: