summaryrefslogtreecommitdiffstats
path: root/glances/outputs/glances_curses.py
diff options
context:
space:
mode:
Diffstat (limited to 'glances/outputs/glances_curses.py')
-rw-r--r--glances/outputs/glances_curses.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/glances/outputs/glances_curses.py b/glances/outputs/glances_curses.py
index f4e70c81..0fc2c3f7 100644
--- a/glances/outputs/glances_curses.py
+++ b/glances/outputs/glances_curses.py
@@ -201,7 +201,7 @@ class _GlancesCurses(object):
if config is not None and config.has_section('outputs'):
logger.debug('Read the outputs section in the configuration file')
self.theme['name'] = config.get_value('outputs', 'curse_theme', default='black')
- logger.debug('Theme for the curse interface: {}'.format(self.theme['name']))
+ self.args.enable_separator = config.get_bool_value('outputs', 'separator', default=True)
def is_theme(self, name):
"""Return True if the theme *name* should be used."""
@@ -596,7 +596,7 @@ class _GlancesCurses(object):
self.column = self.next_column
def separator_line(self, color='SEPARATOR'):
- """New separator line in the curses interface."""
+ """Add a separator line in the curses interface."""
if not self.args.enable_separator:
return
self.new_line()