mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-04 10:35:51 +00:00
Fix broken import
This commit is contained in:
parent
ed12509c77
commit
aac97b1ae7
1 changed files with 2 additions and 1 deletions
|
|
@ -211,7 +211,8 @@ class DavSession(object):
|
|||
useragent=USERAGENT, verify_fingerprint=None,
|
||||
auth_cert=None):
|
||||
if username and not password:
|
||||
password = utils.get_password(username, url)
|
||||
from ..utils.password import get_password
|
||||
password = get_password(username, url)
|
||||
|
||||
self._settings = {
|
||||
'verify': prepare_verify(verify),
|
||||
|
|
|
|||
Loading…
Reference in a new issue