Fix isort test

Was broken by isort>=5
This commit is contained in:
Unrud 2020-07-23 18:42:43 +02:00
parent 53c1648738
commit 1edfb16143
2 changed files with 2 additions and 2 deletions

View file

@ -57,8 +57,8 @@ class TestBaseAuthRequests(BaseTest):
``test_matrix`` "unicode"."""
if htpasswd_encryption == "bcrypt":
try:
from passlib.hash import bcrypt
from passlib.exc import MissingBackendError
from passlib.hash import bcrypt
except ImportError:
pytest.skip("passlib[bcrypt] is not installed")
try: