Make dividers unicode

Fixes travis problem with old vim
This commit is contained in:
ZyX 2014-08-03 13:13:49 +04:00
parent 43acf07ca0
commit 1b8c092ae3
1 changed files with 5 additions and 0 deletions

View File

@ -32,6 +32,11 @@ class Theme(object):
run_once=False,
shutdown_event=None):
self.dividers = theme_config.get('dividers', common_config['dividers'])
self.dividers = dict((
(key, dict((k, u(v))
for k, v in val.items()))
for key, val in self.dividers.items()
))
self.spaces = theme_config.get('spaces', common_config['spaces'])
self.segments = []
self.EMPTY_SEGMENT = {