summaryrefslogtreecommitdiff
path: root/poezio/theming.py
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-10-25 13:17:35 +0000
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2016-06-11 20:49:46 +0100
commit739793e9bc562115a1d5b5be6f91c439398077e7 (patch)
tree5a13a281fcdaf834642edb9a5908e4c79b57f0ee /poezio/theming.py
parent58d66ad03bdaf21f806b1e33b0d7d1a7ccffbb15 (diff)
downloadpoezio-739793e9bc562115a1d5b5be6f91c439398077e7.tar.gz
poezio-739793e9bc562115a1d5b5be6f91c439398077e7.tar.bz2
poezio-739793e9bc562115a1d5b5be6f91c439398077e7.tar.xz
poezio-739793e9bc562115a1d5b5be6f91c439398077e7.zip
Prefer '\0' to None or an empty string for single characters.
Diffstat (limited to 'poezio/theming.py')
-rwxr-xr-xpoezio/theming.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/theming.py b/poezio/theming.py
index 5d263741..b420c233 100755
--- a/poezio/theming.py
+++ b/poezio/theming.py
@@ -400,7 +400,7 @@ def read_tuple(_str):
Read a tuple dumped with dump_tumple
"""
attrs = _str.split(',')
- char = attrs[2] if len(attrs) > 2 else None
+ char = attrs[2] if len(attrs) > 2 else '\0'
return (int(attrs[0]), int(attrs[1])), char
def to_curses_attr(color_tuple):