From 467b8510a78520b505d2c6bfc4a59b98679f3d39 Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 12 Dec 2025 14:38:41 +0800 Subject: [PATCH] Initial commit --- create_repo.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/create_repo.py b/create_repo.py index 352be9b..f4b8658 100644 --- a/create_repo.py +++ b/create_repo.py @@ -23,7 +23,9 @@ def run_command(command): shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, - text=True + text=True, + encoding='utf-8', + errors='replace' ) if result.stdout: print(result.stdout.strip())