mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Fix bug for --verbosity setting
This commit is contained in:
parent
78addbf4c7
commit
6a63dcec81
2 changed files with 2 additions and 2 deletions
2
setup.py
2
setup.py
|
|
@ -38,7 +38,7 @@ setup(
|
||||||
'console_scripts': ['vdirsyncer = vdirsyncer.cli:main']
|
'console_scripts': ['vdirsyncer = vdirsyncer.cli:main']
|
||||||
},
|
},
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'click',
|
'click>=2.0',
|
||||||
'requests',
|
'requests',
|
||||||
'lxml',
|
'lxml',
|
||||||
'icalendar>=3.6',
|
'icalendar>=3.6',
|
||||||
|
|
|
||||||
|
|
@ -199,4 +199,4 @@ def test_verbosity(tmpdir):
|
||||||
env={'VDIRSYNCER_CONFIG': str(config_file)}
|
env={'VDIRSYNCER_CONFIG': str(config_file)}
|
||||||
)
|
)
|
||||||
assert result.exception
|
assert result.exception
|
||||||
assert 'invalid verbosity value'
|
assert 'invalid verbosity value' in result.output.lower()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue