View | Details | Raw Unified | Return to bug 31508 | Differences between
and this patch

Collapse All | Expand All

(-)Uuid.py Fri Oct 26 10:27:41 2001 (-1 / +1 lines)
Lines 64-70 Link Here
64
    newUuid = ''
64
    newUuid = ''
65
    curUuid = uuid
65
    curUuid = uuid
66
    for ctr in range(16):
66
    for ctr in range(16):
67
        num = int(curUuid & 0xF)
67
        num = int(curUuid & 0xFF)
68
        newChar = chr(num)
68
        newChar = chr(num)
69
        curUuid = curUuid >> 8
69
        curUuid = curUuid >> 8
70
        newUuid = newChar + newUuid
70
        newUuid = newChar + newUuid

Return to bug 31508