Replace aiohttp.web.HTTPConflict()

This commit is contained in:
grossmj 2024-10-31 13:11:01 +10:00
parent 7e902726bf
commit ec300d19d4
No known key found for this signature in database
GPG Key ID: 0A2D76AC45EA25CD

View File

@ -203,7 +203,7 @@ def _create_symbolic_links(zip_file, path):
os.remove(symlink_path)
os.symlink(symlink_target, symlink_path)
except OSError as e:
raise aiohttp.web.HTTPConflict(text=f"Cannot create symbolic link: {e}")
raise ControllerError(f"Cannot create symbolic link: {e}")
def _move_node_file(path, old_id, new_id):
"""