Commit 4168c046 authored by Georg Brandl's avatar Georg Brandl

Fix a tab.

parent dd5384d1
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment