+1
-1
maintainers/scripts/update.py
+1
-1
maintainers/scripts/update.py
···
304
304
# Git can only handle a single index operation at a time
305
305
async with merge_lock:
306
306
await check_subprocess_output("git", "add", *change["files"], cwd=worktree)
307
-
commit_message = "{attrPath}: {oldVersion} -> {newVersion}".format(**change)
307
+
commit_message = "{attrPath}: {oldVersion} → {newVersion}".format(**change)
308
308
if "commitMessage" in change:
309
309
commit_message = change["commitMessage"]
310
310
elif "commitBody" in change: