This commit is contained in:
Konsta Vesterinen
2013-10-24 11:27:31 +03:00
parent f52a6d8bd2
commit 2950abb5f6

View File

@@ -5,12 +5,12 @@ from sqlalchemy import types
from sqlalchemy.dialects import postgresql
from .scalar_coercible import ScalarCoercible
passlib = None
try:
import passlib
from passlib.context import CryptContext
except ImportError:
passlib = None
pass
class Password(object):