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
In libarchive/adapters/archive_read.py line 61 the codec is set to _ASCII_ENCODING, which in line 18 is hard-coded into 'ascii':
libarchive/adapters/archive_read.py
_ASCII_ENCODING
filepath = filepath.encode(_ASCII_ENCODING)
_ASCII_ENCODING = 'ascii'
Replacing _ASCII_ENCODING with 'utf-8' temporarily solves my problem.
The text was updated successfully, but these errors were encountered:
extract
No branches or pull requests
In
libarchive/adapters/archive_read.py
line 61 the codec is set to_ASCII_ENCODING
, which in line 18 is hard-coded into 'ascii':Replacing
_ASCII_ENCODING
with 'utf-8' temporarily solves my problem.The text was updated successfully, but these errors were encountered: