|
@@ -121,7 +121,8 @@ class User(DeclarativeBase):
|
121
|
121
|
|
122
|
122
|
# Make sure the hashed password is a unicode object at the end of the
|
123
|
123
|
# process because SQLAlchemy _wants_ unicode objects for Unicode cols
|
124
|
|
- password = password.decode('utf-8')
|
|
124
|
+ # FIXME - D.A. - 2013-11-20 - The following line has been removed since using python3. Is this normal ?!
|
|
125
|
+ # password = password.decode('utf-8')
|
125
|
126
|
|
126
|
127
|
return password
|
127
|
128
|
|