Comment 5 for bug 296604

Revision history for this message
mungewell (simon-mungewell) wrote :

Slightly better way of fixing leading zeros...

change
cmd2.append('%s' % hex(random.getrandbits(128))[2:-1])
for
cmd2.append('%032X' % random.getrandbits(128))

Simon.