We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mask
When I'm trying to mask 9786129999999 ISBN
9786129999999
mask('9786129999999')
it results in string with doubled separator:
'978-612--999999-9'
It doesn't look correct to me. I think the culprit here is that in this part of code
isbnlib/isbnlib/_msk.py
Line 62 in ddc62f2
ib[6:6]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I'm trying to mask
9786129999999
ISBNit results in string with doubled separator:
It doesn't look correct to me. I think the culprit here is that in this part of code
isbnlib/isbnlib/_msk.py
Line 62 in ddc62f2
the second entry in the list is
ib[6:6]
(since idx is 0) and it returns an empty string.The text was updated successfully, but these errors were encountered: