From 21d83ae0d22e024ce795ee62419c69ba85a8d2b3 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Sat, 31 Dec 2016 17:06:09 +0100 Subject: [PATCH] Document option default --- vdirsyncer/cli/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vdirsyncer/cli/__init__.py b/vdirsyncer/cli/__init__.py index d7ecd9d..0a3e81f 100644 --- a/vdirsyncer/cli/__init__.py +++ b/vdirsyncer/cli/__init__.py @@ -210,7 +210,8 @@ def discover(ctx, pairs, max_workers, list): @click.option('--repair-unsafe-uid/--no-repair-unsafe-uid', default=False, help=('Some characters in item UIDs and URLs may cause problems ' 'with buggy software. Adding this option will reassign ' - 'new UIDs to those items.')) + 'new UIDs to those items. This is disabled by default, ' + 'which is equivalent to `--no-repair-unsafe-uid`.')) @pass_context @catch_errors def repair(ctx, collection, repair_unsafe_uid):