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
I'm running MSXPI v1.1 rev 0, server 1.1 build 20230915.680. pcopy fails because of this:
/usr/local/lib/python3.9/dist-packages/pyfatfs/PyFat.py
line 954:
if signature != 0xAA55: #raise PyFATException(f"Invalid signature: \'{hex(signature)}\'.")
that causes and indentation error, since the "if" block is empty.
This change is made by msxpi-setup.sh:
sudo sed -i "s/raise PyFATException(f\"Invalid signature:/#raise PyFATException(f\"Invalid signature:/" /usr/local/lib/python3.9/dist-packages/pyfatfs/PyFat.py
The text was updated successfully, but these errors were encountered:
Add a "pass" inside the IF.
if signature != 0xAA55: pass
This is just a workaround though.
Sorry, something went wrong.
No branches or pull requests
I'm running MSXPI v1.1 rev 0, server 1.1 build 20230915.680.
pcopy fails because of this:
/usr/local/lib/python3.9/dist-packages/pyfatfs/PyFat.py
line 954:
that causes and indentation error, since the "if" block is empty.
This change is made by msxpi-setup.sh:
sudo sed -i "s/raise PyFATException(f\"Invalid signature:/#raise PyFATException(f\"Invalid signature:/" /usr/local/lib/python3.9/dist-packages/pyfatfs/PyFat.py
The text was updated successfully, but these errors were encountered: