fixes double print, adds comments

This commit is contained in:
OniriCorpe 2024-05-05 21:45:43 +02:00
parent 16dd17af59
commit ce66396fdc

View file

@ -48,7 +48,7 @@ def request_handling_rate_limit(method, *args, **kwargs):
while True: while True:
response = method(*args, **kwargs) response = method(*args, **kwargs)
# we are not reated limited # we are not rate limited
if response.status_code != 422: if response.status_code != 422:
break break
@ -66,11 +66,13 @@ def generate_mirrors():
repo_name = app[0] repo_name = app[0]
repo_url = app[1] repo_url = app[1]
if "https://github.com/YunoHost-Apps/" not in repo_url: if not repo_url.startswith("https://github.com/YunoHost-Apps/"):
# do not care about repos that are not in the YunoHost-Apps org
continue continue
if app[0] not in mirror_list: if repo_name in mirror_list:
print(f"A mirror for '{repo_name}' must be created.") # the mirror is already existing
continue
print(f"A mirror for '{repo_name}' must be created.") print(f"A mirror for '{repo_name}' must be created.")
@ -102,7 +104,9 @@ def generate_mirrors():
if create_mirror_request.status_code != 201: if create_mirror_request.status_code != 201:
raise Exception( raise Exception(
"Request failed:", create_mirror_request.status_code, create_mirror_request.text "Request failed:",
create_mirror_request.status_code,
create_mirror_request.text,
) )
# configuring properly the new repository # configuring properly the new repository