IsaacKerson commited on
Commit
6985fd9
1 Parent(s): 7b5a087

remove enode

Browse files
Files changed (1) hide show
  1. authenticator.py +1 -1
authenticator.py CHANGED
@@ -158,7 +158,7 @@ class Authenticate:
158
  boolean
159
  The validation state for the input password by comparing it to the hashed password on disk.
160
  """
161
- return bcrypt.checkpw(self.password.encode(), self.get_hashed_password().encode())
162
 
163
  def login(self, form_name, location='main'):
164
  """Create a new instance of "authenticate".
 
158
  boolean
159
  The validation state for the input password by comparing it to the hashed password on disk.
160
  """
161
+ return bcrypt.checkpw(self.password.encode(), self.get_hashed_password())
162
 
163
  def login(self, form_name, location='main'):
164
  """Create a new instance of "authenticate".