From: Jeremy Stanley Date: Fri, 22 Nov 2013 10:27:38 +0000 (+0000) Subject: Fix an incorrect TODO comment line X-Git-Tag: 0.0.1~260 X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=commitdiff_plain;h=86ca67c3421f3ea64f60f67f4fd43acb662b2cf7 Fix an incorrect TODO comment line --- diff --git a/lib/mudpy/password.py b/lib/mudpy/password.py index 68e1a5f..bad5579 100644 --- a/lib/mudpy/password.py +++ b/lib/mudpy/password.py @@ -162,7 +162,7 @@ def create( # number of times for i in range(2 ** rounds): hashed = algorithms[algorithm](hashed.encode("utf-8")).digest() - # TODO: remove this exception trap after the switch to py2k + # TODO: remove this check after the switch to py3k try: hashed = "".join(format(x, "02x") for x in bytes(hashed)) except ValueError: