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:48:37 -0400 |
commit | 53ec526927fb224c4252ef172d248bef7d4b1081 (patch) | |
tree | f3b132d8c40224f22b2d5eacb83f30ec19f7cf3f | |
parent | e9eb918529b75c04d2d6b2a4ca72ec8ec099e888 (diff) | |
download | b4-53ec526927fb224c4252ef172d248bef7d4b1081.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 fcea7df..0d6fd4a 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 = [ |