From 42de66c7908cb4bee6f0991dfc3a02d8ef08d411 Mon Sep 17 00:00:00 2001 From: Tobias Witek Date: Tue, 24 Dec 2019 13:58:29 +0100 Subject: [PATCH] [core/config] Add missing file in commit previous commit accidentially didn't include config.py see #493 --- bumblebee/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bumblebee/config.py b/bumblebee/config.py index 4883fe1..af3e219 100644 --- a/bumblebee/config.py +++ b/bumblebee/config.py @@ -51,7 +51,7 @@ def create_parser(): parser.add_argument("-m", "--modules", nargs="+", action='append', default=[], help=MODULE_HELP) parser.add_argument("-t", "--theme", default="default", help=THEME_HELP) - parser.add_argument("--markup", default="none", help="Specify the markup type of the output") + parser.add_argument("--markup", default="none", help="Specify the markup type of the output (e.g. 'pango')") parser.add_argument("-p", "--parameters", nargs="+", action='append', default=[], help=PARAMETER_HELP) parser.add_argument("-l", "--list", choices=["modules", "themes"], action=print_usage,