about summary refs log tree commit diff
path: root/maintainers
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2023-04-05 11:23:15 +0200
committerGitHub <noreply@github.com>2023-04-05 11:23:15 +0200
commit10978e9c8d073c0a58b1f8038222966917bf6539 (patch)
treec592b2d8e64369b555c3baf510488dd559f1928b /maintainers
parentfd2785615e21c95b1839265fd4aa69ab8a10a70c (diff)
parentf42b9fd74544bfcbabef8a8efd8ea388741cff0e (diff)
Merge pull request #224746 from viraptor/asciify-message
maintainers/scripts/update.nix: Remove unicode from message
Diffstat (limited to 'maintainers')
-rw-r--r--maintainers/scripts/update.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/maintainers/scripts/update.py b/maintainers/scripts/update.py
index 7ae08958a1646..bbed2bda5e03f 100644
--- a/maintainers/scripts/update.py
+++ b/maintainers/scripts/update.py
@@ -100,7 +100,7 @@ async def commit_changes(name: str, merge_lock: asyncio.Lock, worktree: str, bra
         # Git can only handle a single index operation at a time
         async with merge_lock:
             await check_subprocess('git', 'add', *change['files'], cwd=worktree)
-            commit_message = '{attrPath}: {oldVersion} → {newVersion}'.format(**change)
+            commit_message = '{attrPath}: {oldVersion} -> {newVersion}'.format(**change)
             if 'commitMessage' in change:
                 commit_message = change['commitMessage']
             elif 'commitBody' in change: