Skip to content

Commit

Permalink
fix: handle better spaces at msg composing
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Izquierdo committed Nov 2, 2023
1 parent b8896e2 commit 6862563
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/aap_eda/services/project/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def __call__(
"Credentials not provided"
) from None
# generic error
usr_msg = f"Command git failed with return code {e.returncode}. "
usr_msg = f"Command git failed with return code {e.returncode}."
if e.stderr:
usr_msg += f"Error: {e.stderr}"
usr_msg += f" Error: {e.stderr}"
raise GitError(usr_msg) from None

0 comments on commit 6862563

Please sign in to comment.