maintainers/scripts/update.nix: Remove unicode from message and comply with CONTRIBUTING.md

It's not used infrequently and the ascii version is nicer for automatic parsing.
```
git log --grep '->' --oneline --since '2022-01-01' | wc -l
67791
git log --grep '→' --oneline --since '2022-01-01' | wc -l
2914
```

+1 -1
+1 -1
maintainers/scripts/update.py
··· 100 100 # Git can only handle a single index operation at a time 101 101 async with merge_lock: 102 102 await check_subprocess('git', 'add', *change['files'], cwd=worktree) 103 - commit_message = '{attrPath}: {oldVersion} → {newVersion}'.format(**change) 103 + commit_message = '{attrPath}: {oldVersion} -> {newVersion}'.format(**change) 104 104 if 'commitMessage' in change: 105 105 commit_message = change['commitMessage'] 106 106 elif 'commitBody' in change: