Skip to content

Commit

Permalink
fix missing replace
Browse files Browse the repository at this point in the history
  • Loading branch information
mastercoms committed Aug 25, 2024
1 parent 8a92ebf commit 9f92c97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pbpy/pbgit.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 9f92c97

Please sign in to comment.