mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Add Windows warning, see #535
This commit is contained in:
parent
7744070568
commit
b361fe755c
1 changed files with 7 additions and 1 deletions
|
|
@ -8,7 +8,7 @@ import click
|
|||
|
||||
import click_log
|
||||
|
||||
from .. import __version__
|
||||
from .. import BUGTRACKER_HOME, __version__
|
||||
|
||||
|
||||
cli_logger = logging.getLogger(__name__)
|
||||
|
|
@ -49,6 +49,12 @@ def app(ctx, config):
|
|||
Synchronize calendars and contacts
|
||||
'''
|
||||
|
||||
if sys.platform == 'win32':
|
||||
cli_logger.warning('Vdirsyncer currently does not support Windows. '
|
||||
'You will likely encounter bugs. '
|
||||
'See {}/535 for more information.'
|
||||
.format(BUGTRACKER_HOME))
|
||||
|
||||
if not ctx.config:
|
||||
from .config import load_config
|
||||
ctx.config = load_config(config)
|
||||
|
|
|
|||
Loading…
Reference in a new issue