fix f string in row 469

This commit is contained in:
2025-07-09 12:11:31 +02:00
parent 6242dd7b0d
commit ec76940dca
2 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ class GiteaUpdate:
"""
try:
to_down: str = f"wget -qP {Path.home()} {" "} {urld}"
to_down: str = f"wget -qP {Path.home()} {' '} {urld}"
result: int = subprocess.call(to_down, shell=True)
if result == 0:
shutil.chown(f"{Path.home()}/{res}.zip", 1000, 1000)