summaryrefslogtreecommitdiff
path: root/admin
diff options
context:
space:
mode:
authorEli Collins <elic@assurancetechnologies.com>2012-02-08 23:32:13 -0500
committerEli Collins <elic@assurancetechnologies.com>2012-02-08 23:32:13 -0500
commitdcd2dcc7243052b2d5bd7d9f4abbedbb01911e13 (patch)
treea154bbd8263d86e0f39617bf14eb0cff0fa622b3 /admin
parent4712bcd50e12e8ed2e8c135d88ed49951dd45bdf (diff)
downloadpasslib-dcd2dcc7243052b2d5bd7d9f4abbedbb01911e13.tar.gz
renamed calc_checksum() -> _calc_checksum(), hiding the last of the private methods of most handlers
Diffstat (limited to 'admin')
-rw-r--r--admin/benchmarks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/benchmarks.py b/admin/benchmarks.py
index 2dd44cd..195fcc3 100644
--- a/admin/benchmarks.py
+++ b/admin/benchmarks.py
@@ -54,7 +54,7 @@ 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):
+ def _calc_checksum(self, password):
return unicode(password[0:1])
class AnotherHandler(BlankHandler):