Commit b649eeda authored by Jacek Sowiński's avatar Jacek Sowiński

Disable color output in column-ui's console

We don't want raw ANSI codes there. We'll enable it back again after
providing proper coloring solution.
parent 4075db7f
......@@ -70,6 +70,8 @@ class UIApplication(CLIApplicationBase):
def __init__(self):
super().__init__()
config(p_overrides={('topydo', 'colors'): '0'}) # disable color in output
self.todofile = TodoFile.TodoFile(config().todotxt())
self.todolist = TodoList.TodoList(self.todofile.read())
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment