fix for heading zeroes

This commit is contained in:
thomasv 2012-04-19 14:52:21 +02:00
parent e42cd36318
commit 4a152d4faf
1 changed files with 1 additions and 1 deletions

View File

@ -1675,7 +1675,7 @@ def mn_decode( wlist ):
w2 = (words.index(word2))%n
w3 = (words.index(word3))%n
x = w1 +n*((w2-w1)%n) +n*n*((w3-w2)%n)
out += '%x'%x
out += '%08x'%x
return out