Use print(...) instead of undefined printf(...)
This commit is contained in:
parent
25cd520fc4
commit
51cb6b8221
1 changed files with 2 additions and 2 deletions
|
@ -254,12 +254,12 @@ def main():
|
|||
first_sha512 = tree_sha512sum()
|
||||
message += '\n\nTree-SHA512: ' + first_sha512
|
||||
except subprocess.CalledProcessError as e:
|
||||
printf("ERROR: Unable to compute tree hash")
|
||||
print("ERROR: Unable to compute tree hash")
|
||||
sys.exit(4)
|
||||
try:
|
||||
subprocess.check_call([GIT,'commit','--amend','-m',message.encode('utf-8')])
|
||||
except subprocess.CalledProcessError as e:
|
||||
printf("ERROR: Cannot update message.",file=stderr)
|
||||
print("ERROR: Cannot update message.", file=stderr)
|
||||
sys.exit(4)
|
||||
|
||||
print_merge_details(pull, title, branch, base_branch, head_branch)
|
||||
|
|
Loading…
Reference in a new issue