diff options
author | Eli Collins <elic@assurancetechnologies.com> | 2016-06-15 18:07:59 -0400 |
---|---|---|
committer | Eli Collins <elic@assurancetechnologies.com> | 2016-06-15 18:07:59 -0400 |
commit | ce23c2ab15e70b612cbd902bf0513c0cf6d734e9 (patch) | |
tree | 3b44c5799cd1aff93244d42d2c87e891b4b60e6d /passlib/handlers/mssql.py | |
parent | fbe95e1cd44c27c9b32dc8dfa3008b59ffbc9baa (diff) | |
download | passlib-ce23c2ab15e70b612cbd902bf0513c0cf6d734e9.tar.gz |
renamed PasswordHandler.replace() back to PasswordHandler.using()
this basically reversed rev 5c41b0153d4f; after using it a bit more,
decided the name didn't indicate as well what the method was doing.
Diffstat (limited to 'passlib/handlers/mssql.py')
-rw-r--r-- | passlib/handlers/mssql.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/passlib/handlers/mssql.py b/passlib/handlers/mssql.py index 0c61333..b060b36 100644 --- a/passlib/handlers/mssql.py +++ b/passlib/handlers/mssql.py @@ -104,7 +104,7 @@ class mssql2000(uh.HasRawSalt, uh.HasRawChecksum, uh.GenericHandler): It supports a fixed-length salt. - The :meth:`~passlib.ifc.PasswordHash.replace` method accepts the following optional keywords: + The :meth:`~passlib.ifc.PasswordHash.using` method accepts the following optional keywords: :type salt: bytes :param salt: @@ -181,7 +181,7 @@ class mssql2005(uh.HasRawSalt, uh.HasRawChecksum, uh.GenericHandler): It supports a fixed-length salt. - The :meth:`~passlib.ifc.PasswordHash.replace` method accepts the following optional keywords: + The :meth:`~passlib.ifc.PasswordHash.using` method accepts the following optional keywords: :type salt: bytes :param salt: |