This commit is contained in:
Markus Unterwaditzer 2014-04-30 00:41:51 +02:00
parent 3b89f001b3
commit 4c492c06f3
3 changed files with 1 additions and 3 deletions

View file

@ -7,7 +7,6 @@
:license: MIT, see LICENSE for more details.
'''
from textwrap import dedent
from vdirsyncer.storage.http import HttpStorage
from requests import Response

View file

@ -10,7 +10,7 @@
import hashlib
from .base import Storage, Item
from vdirsyncer.utils import expand_path, get_password, request, urlparse, \
text_type
text_type
USERAGENT = 'vdirsyncer'

View file

@ -143,7 +143,6 @@ def get_password(username, resource):
"""
import getpass
for func in (_password_from_netrc, _password_from_keyring):
password = func(username, resource)
if password is not None: