Browse Source

Merge pull request #69 from loskiq/patch-1

Update mikro.py
pull/74/head
elseif 1 year ago
committed by GitHub
parent
commit
098f967cfd
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      mikro.py

4
mikro.py

@ -39,8 +39,8 @@ def mikro_softwareid_encode(id:int)->str:
assert(isinstance(id, int)) assert(isinstance(id, int))
ret = '' ret = ''
for i in range(8): for i in range(8):
ret += chr(SOFTWARE_ID_CHARACTER_TABLE[id % 0x23])
id //= 0x23
ret += chr(SOFTWARE_ID_CHARACTER_TABLE[id % len(SOFTWARE_ID_CHARACTER_TABLE)])
id //= len(SOFTWARE_ID_CHARACTER_TABLE)
if i == 3: if i == 3:
ret += '-' ret += '-'
return ret return ret

Loading…
Cancel
Save