Fix an incorrect TODO comment line
authorJeremy Stanley <fungi@yuggoth.org>
Fri, 22 Nov 2013 10:27:38 +0000 (10:27 +0000)
committerJeremy Stanley <fungi@yuggoth.org>
Fri, 22 Nov 2013 10:27:38 +0000 (10:27 +0000)
lib/mudpy/password.py

index 68e1a5f..bad5579 100644 (file)
@@ -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: