Skip to content

Commit

Permalink
fix the CONFLICT error message
Browse files Browse the repository at this point in the history
  • Loading branch information
martyzz1 committed Feb 27, 2023
1 parent 0f1b43e commit 218429a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gitfeatures/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ def pullrequest(args):
except CalledProcessError as e:
if b"CONFLICT" in e.output:
err = (
e.output
+ "\n\nUnlucky! You have work to do. Fix the above conflicts and run git pullrequest again"
e.output.decode()
+ " \n\nUnlucky! You have work to do. Fix the above conflicts and run git pullrequest again"
) # noqa
sys.exit(err)
else:
Expand Down

0 comments on commit 218429a

Please sign in to comment.