summaryrefslogtreecommitdiffstats
path: root/glances/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'glances/main.py')
-rw-r--r--glances/main.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/glances/main.py b/glances/main.py
index bcfb27a7..a2bf4933 100644
--- a/glances/main.py
+++ b/glances/main.py
@@ -244,12 +244,11 @@ Examples of use:
help='enable extended stats on top process',
)
parser.add_argument(
- '--separator',
- '--enable-separator',
- action='store_true',
- default=False,
+ '--disable-separator',
+ action='store_false',
+ default=True,
dest='enable_separator',
- help='enable separator in the UI',
+ help='disable separator in the UI (between top and others modules)',
),
parser.add_argument(
'--disable-cursor',