diff options
author | Georg Brandl <georg@python.org> | 2007-03-13 19:18:18 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-03-13 19:18:18 (GMT) |
commit | 4168c0466f873b60dd82ea83782e39a41a3aa45f (patch) | |
tree | 6b53c9d0f4b19970edca0caa68103aed52932579 | |
parent | dd5384d16c8aa83f827a9c672228a1c1e4b022fb (diff) | |
download | cpython-4168c0466f873b60dd82ea83782e39a41a3aa45f.zip cpython-4168c0466f873b60dd82ea83782e39a41a3aa45f.tar.gz cpython-4168c0466f873b60dd82ea83782e39a41a3aa45f.tar.bz2 |
Fix a tab.
-rw-r--r-- | Lib/test/test_tempfile.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_tempfile.py b/Lib/test/test_tempfile.py index 82f1ea3..cfb24e2 100644 --- a/Lib/test/test_tempfile.py +++ b/Lib/test/test_tempfile.py @@ -566,7 +566,7 @@ class test_NamedTemporaryFile(TC): dir = tempfile.gettempdir() try: file = tempfile.NamedTemporaryFile(dir=dir, prefix=pre, suffix=suf, - delete=delete) + delete=delete) except: self.failOnException("NamedTemporaryFile") @@ -603,7 +603,7 @@ class test_NamedTemporaryFile(TC): def test_dis_del_on_close(self): # Tests that delete-on-close can be disabled dir = tempfile.mkdtemp() - tmp = None + tmp = None try: f = tempfile.NamedTemporaryFile(dir=dir, delete=False) tmp = f.name |