projects
/
mudpy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d92cf2f
)
Fix an incorrect TODO comment line
author
Jeremy Stanley
<fungi@yuggoth.org>
Fri, 22 Nov 2013 10:27:38 +0000
(10:27 +0000)
committer
Jeremy Stanley
<fungi@yuggoth.org>
Fri, 22 Nov 2013 10:27:38 +0000
(10:27 +0000)
lib/mudpy/password.py
patch
|
blob
|
history
diff --git
a/lib/mudpy/password.py
b/lib/mudpy/password.py
index
68e1a5f
..
bad5579
100644
(file)
--- 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 py2
k
+ # TODO: remove this
check after the switch to py3
k
try:
hashed = "".join(format(x, "02x") for x in bytes(hashed))
except ValueError: