You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think the current implementation of _calculate_checksum in InternationalStandardSerialNumber is wrong. Indeed, the tmp variable sometimes assume the value of "11", while should probably be "0", making the checksum two digits long!
This is a minimum replicating example:
frombarcodeimportISSNprint(ISSN("6727893").issn) # output = 672789311 when should be 67278930
Simply adding and extra %11 operation at the end of the tmp computation should solve the issue:
I think the current implementation of
_calculate_checksum
inInternationalStandardSerialNumber
is wrong. Indeed, the tmp variable sometimes assume the value of "11", while should probably be "0", making the checksum two digits long!This is a minimum replicating example:
Simply adding and extra
%11
operation at the end of thetmp
computation should solve the issue:For reference:
python-barcode/barcode/isxn.py
Line 110 in 389dc5f
The text was updated successfully, but these errors were encountered: