From 9f92c97ecd955834784721592a6913a68b71fe60 Mon Sep 17 00:00:00 2001 From: mastercoms Date: Sun, 25 Aug 2024 18:50:13 -0400 Subject: [PATCH] fix missing replace --- pbpy/pbgit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pbpy/pbgit.py b/pbpy/pbgit.py index 389c544..2d83bb3 100644 --- a/pbpy/pbgit.py +++ b/pbpy/pbgit.py @@ -304,7 +304,7 @@ def check_remote_connection(): recent_url = pbconfig.get("git_url") git_user = pbconfig.get_user("project", "git_user") if git_user: - recent_url.replace("https://", f"https://{git_user}@") + recent_url = recent_url.replace("https://", f"https://{git_user}@") if current_url != recent_url: output = pbtools.get_combined_output(