Skip to content

Commit 6b99fc8

Browse files
committed
tmp
1 parent c95d779 commit 6b99fc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pulp_python/app/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ def artifact_to_metadata_artifact(filename: str, artifact: Artifact) -> Artifact
266266
if not filename.endswith(".whl"):
267267
return None
268268

269-
with tempfile.NamedTemporaryFile("wb", dir=".", suffix=filename) as temp_file:
269+
with tempfile.NamedTemporaryFile("wb", suffix=filename) as temp_file:
270270
artifact.file.seek(0)
271271
shutil.copyfileobj(artifact.file, temp_file)
272272
temp_file.flush()

0 commit comments

Comments
 (0)