Oops, fix rev argument not being used.

This commit is contained in:
voussoir 2020-02-19 15:08:02 -08:00
parent 2b6bbd276e
commit 48e6840c35

View file

@ -72,7 +72,7 @@ def git_merge_base():
return check_output(command)
def git_rev_parse(rev):
command = [GIT, 'rev-parse', '@{u}']
command = [GIT, 'rev-parse', rev]
return check_output(command)
def git_status():