Skip to content

Commit

Permalink
Update git_base.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Ricardo-Evans authored and github-actions committed Sep 20, 2022
1 parent b0a74cb commit 57e828a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def git_c2upstream():

def git_push():
ret, val = subprocess.getstatusoutput("git status")
if ret or "noting to commit" in val:
if ret or "nothing to commit" in val:
print(ret, val)
return 1
lines = [
Expand Down

0 comments on commit 57e828a

Please sign in to comment.