]> granicus.if.org Git - python/commitdiff
fix long line
authorJeremy Hylton <jeremy@alum.mit.edu>
Mon, 19 Feb 2001 15:34:10 +0000 (15:34 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Mon, 19 Feb 2001 15:34:10 +0000 (15:34 +0000)
Lib/tempfile.py

index a503e7fe5760d050fe405bc81791b649f3b63b7f..7d7f92415d5fca35949f84646f954720f335449d 100644 (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: