Index: lnt/util/ImportData.py =================================================================== --- lnt/util/ImportData.py +++ lnt/util/ImportData.py @@ -337,9 +337,8 @@ prefix = utcnow.strftime("data-%Y-%m-%d_%H-%M-%S") fd, path = tempfile.mkstemp(prefix=prefix, suffix='.json', dir=str(tmpdir), text=True) - fp = os.fdopen(fd, "w") - fp.write(data) - fp.close() + with os.fdopen(fd, "w") as fp: + fp.write(data) # Import the data. #