mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Handle non-ascii char
This commit is contained in:
parent
39d81bac3f
commit
1adb356a7a
1 changed files with 1 additions and 1 deletions
|
|
@ -86,7 +86,7 @@ if exitCode != 0:
|
|||
sys.stderr.write("Can not merge\n")
|
||||
sys.exit(1)
|
||||
|
||||
exitCode = os.system('git commit -a --author "' + prAuthor + '" --date "' + prAuthorDate + '" -m"' + commitMsg + '"')
|
||||
exitCode = os.system('git commit -a --author "' + prAuthor + '" --date "' + prAuthorDate + '" -m"' + commitMsg.encode('utf-8') + '"')
|
||||
if exitCode != 0:
|
||||
sys.stderr.write("Commit failed\n")
|
||||
sys.exit(1)
|
||||
|
|
|
|||
Loading…
Reference in a new issue