We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The error message that is printed when not in a git repo has changed from:
fatal: Not a git repository to fatal: not a git repository
Which causes gitstatus.py to output garbage results. Easy fix is to compare using .lower()
The text was updated successfully, but these errors were encountered:
Please see here: #103
Sorry, something went wrong.
A better option is to compare the status code:
if gitsym.returncode != 0: sys.exit(0)
fix olivierverdier#120
a0aec9d
Yes, that has been discussed in #103 and there's a PR in #119 , just in case you want to join the thread 😄
No branches or pull requests
The error message that is printed when not in a git repo has changed from:
fatal: Not a git repository to
fatal: not a git repository
Which causes gitstatus.py to output garbage results. Easy fix is to compare using .lower()
The text was updated successfully, but these errors were encountered: