mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Fix bug
This commit is contained in:
parent
84ee96c394
commit
1e3b8055d8
1 changed files with 1 additions and 1 deletions
|
|
@ -150,7 +150,7 @@ def _main(env, file_cfg):
|
||||||
|
|
||||||
app.register_command('sync', sync_command)
|
app.register_command('sync', sync_command)
|
||||||
|
|
||||||
if general.get('verbose', False):
|
if general.get('verbose', 'False').lower() == 'true':
|
||||||
verbose_option()
|
verbose_option()
|
||||||
else:
|
else:
|
||||||
quiet_option()
|
quiet_option()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue