diff options
| author | Jan Tojnar <jtojnar@gmail.com> | 2023-04-13 07:34:43 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-13 07:34:43 +0200 |
| commit | c409eebe0bd9bf6b20a6d8fc23b6b81b0d5cd298 (patch) | |
| tree | bc3e8ccbeb38a276a9ca2e6629510afb82d7d60d | |
| parent | Merge pull request #224923 from amjoseph-nixpkgs/pr/chafa/cross (diff) | |
| download | nixpkgs-origin/revert-224746-asciify-message.tar.gz | |
Revert "maintainers/scripts/update.nix: Remove unicode from message"origin/revert-224746-asciify-message
| -rw-r--r-- | maintainers/scripts/update.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/maintainers/scripts/update.py b/maintainers/scripts/update.py index bbed2bda5e03..7ae08958a164 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: |
