diff options
author | Konstantin Ryabitsev <konstantin@linuxfoundation.org> | 2020-05-26 08:40:29 -0400 |
---|---|---|
committer | Konstantin Ryabitsev <konstantin@linuxfoundation.org> | 2020-05-26 08:40:29 -0400 |
commit | a926bac9e6c222e1bfe87ce79d925083c5879060 (patch) | |
tree | 4437be4a916ccb5415647ef2519bbc61e60cb695 | |
parent | 34c1fe5f73047a0d80a383231ad3d736361b38ed (diff) | |
download | b4-a926bac9e6c222e1bfe87ce79d925083c5879060.tar.gz |
Use unicode escape sequences
Let's keep our code sources in plain old ascii.
Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
-rw-r--r-- | b4/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/b4/__init__.py b/b4/__init__.py index cb84304..a462fe9 100644 --- a/b4/__init__.py +++ b/b4/__init__.py @@ -38,8 +38,8 @@ FILENAME_RE = re.compile(r'^(---|\+\+\+) (\S+)') PASS_SIMPLE = '[P]' FAIL_SIMPLE = '[F]' -PASS_FANCY = '[\033[32m✓\033[0m]' -FAIL_FANCY = '[\033[31m✗\033[0m]' +PASS_FANCY = '[\033[32m\u2713\033[0m]' +FAIL_FANCY = '[\033[31m\u2717\034[0m]' # You can use bash-style globbing here WANTHDRS = [ |