Use os.path.dirname() for getting the directory name of a path (#81504)

pull/82088/head
Aarni Koskela 2022-11-14 16:21:35 +02:00 committed by GitHub
parent 1826795d37
commit fa9a51e528
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -54,11 +54,10 @@ def write_utf8_file(
"""
tmp_filename = ""
tmp_path = os.path.split(filename)[0]
try:
# Modern versions of Python tempfile create this file with mode 0o600
with tempfile.NamedTemporaryFile(
mode="w", encoding="utf-8", dir=tmp_path, delete=False
mode="w", encoding="utf-8", dir=os.path.dirname(filename), delete=False
) as fdesc:
fdesc.write(utf8_data)
tmp_filename = fdesc.name