Skip to content
Snippets Groups Projects
Commit 98a044bf authored by Dmitry Rodionov's avatar Dmitry Rodionov
Browse files

fix: missing_ok is unsupported in old python (for alt linux)

parent 929eda3e
No related branches found
No related tags found
1 merge request!1060Remaining patches for stat analysis
......@@ -95,7 +95,7 @@ def apply_patches():
for fname in glob.glob(glob_pattern):
print("Removing:", REPO_DIR / fname)
(REPO_DIR / fname).unlink(missing_ok=DEBUG)
(REPO_DIR / fname).unlink()
apply_from_dir(GAMAYUN_PATCHES)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment