Skip to content

Commit

Permalink
sort out bytes object string
Browse files Browse the repository at this point in the history
  • Loading branch information
martyzz1 committed Feb 27, 2023
1 parent 151cd69 commit 0f1b43e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gitfeatures/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def pullrequest(args):
print(output)
print("Congratulations, successfully {}d {}".format(merge_strategy, master_branch))
except CalledProcessError as e:
if "CONFLICT" in e.output:
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"
Expand Down

0 comments on commit 0f1b43e

Please sign in to comment.