diff options
Diffstat (limited to 'admin/benchmarks.py')
| -rw-r--r-- | admin/benchmarks.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/benchmarks.py b/admin/benchmarks.py index 91c58e1..5cba45e 100644 --- a/admin/benchmarks.py +++ b/admin/benchmarks.py @@ -55,8 +55,8 @@ class BlankHandler(uh.HasRounds, uh.HasSalt, uh.GenericHandler): def to_string(self): return uh.render_mc3(self.ident, self.rounds, self.salt, self.checksum) - def _calc_checksum(self, password): - return unicode(password[0:1]) + def _calc_checksum(self, secret): + return unicode(secret[0:1]) class AnotherHandler(BlankHandler): name = "another" |
