From 2d347692db71d715a2fd587e6c15ba4928614ae0 Mon Sep 17 00:00:00 2001 From: Claus Lohmar Date: Thu, 23 Jul 2026 11:21:07 +0000 Subject: [PATCH] fix: indentation error from aria2c edit --- frontend/app.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/app.py b/frontend/app.py index 9dacec7..6197fe6 100644 --- a/frontend/app.py +++ b/frontend/app.py @@ -228,10 +228,10 @@ def session_upload( logger.info("Starting background download: %s → %s", url, dest) try: - proc = subprocess.Popen( - ["aria2c", "-x8", "-s8", "-d", str(dest.parent), "-o", dest.name, url], - stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, - ) + proc = subprocess.Popen( + ["aria2c", "-x8", "-s8", "-d", str(dest.parent), "-o", dest.name, url], + stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, + ) except Exception as exc: return JSONResponse({"phase": "error", "error": f"Failed to start download: {exc}"}, status_code=500)