We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb5bc19 commit dd9c489Copy full SHA for dd9c489
graalpython/lib-graalpython/modules/standalone/__main__.py
@@ -152,7 +152,7 @@ def get_download_dir(parsed_args):
152
try:
153
if not os.path.exists(mp):
154
os.mkdir(mp)
155
- Pathlib(mp).touch() # Ensure if we can write to that location
+ pathlib.Path(mp).touch() # Ensure if we can write to that location
156
parsed_args.keep_temp = True # Keep this location
157
return mp
158
except Exception as e:
0 commit comments