From 951082c563911ca97d497eb8596961df454d5c9b Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Thu, 16 Apr 2015 20:11:08 +0200 Subject: [PATCH] Improve wording --- vdirsyncer/cli/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vdirsyncer/cli/__init__.py b/vdirsyncer/cli/__init__.py index 65e09ee..48ec3d7 100644 --- a/vdirsyncer/cli/__init__.py +++ b/vdirsyncer/cli/__init__.py @@ -65,8 +65,8 @@ max_workers_option = click.option( '--max-workers', default=0, type=click.IntRange(min=0, max=None), callback=max_workers_callback, help=('Use at most this many connections. With debug messages enabled, ' - 'the default is 1, otherwise an unlimited amount of connections is ' - 'used.') + 'the default is 1, otherwise one connection per collection is ' + 'opened.') )