From 1e3b8055d8433c2b574fcb99c4b1432f26260e34 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Fri, 28 Feb 2014 15:21:17 +0100 Subject: [PATCH] Fix bug --- vdirsyncer/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vdirsyncer/cli.py b/vdirsyncer/cli.py index 242e6e2..8c03fa1 100644 --- a/vdirsyncer/cli.py +++ b/vdirsyncer/cli.py @@ -150,7 +150,7 @@ def _main(env, file_cfg): app.register_command('sync', sync_command) - if general.get('verbose', False): + if general.get('verbose', 'False').lower() == 'true': verbose_option() else: quiet_option()