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
When using the following command in the server console pyDriveWire> dw config show
the following is displayed
option accept True option port 65503 option cmdPort 6809 option debug 1 option printFormat pdf option printDir C:\Users\z48176zz\AppData\Local\Temp option printPrefix cocoprints dw disk insert 0 junk.dsk
When sending the same command through the remote REPL, the following is returned:
b'option accept True\n\roption port 65503\n\roption cmdPort 6809\n\roption debug 1\n\roption printFormat pdf\n\roption printDir C:\Use rs\z48176zz\AppData\Local\Temp\n\roption printPrefix cocoprints\n\rdw disk insert 0 junk.dsk\n'
The text was updated successfully, but these errors were encountered:
Mike said it's a BIG job to fix this correctly. The best way to fix it for now, is to
replace the \n with \n\r (or whatever the correct sequence is) in the return from the read below. print(s.read())
Sorry, something went wrong.
No branches or pull requests
When using the following command in the server console
pyDriveWire> dw config show
the following is displayed
option accept True
option port 65503
option cmdPort 6809
option debug 1
option printFormat pdf
option printDir C:\Users\z48176zz\AppData\Local\Temp
option printPrefix cocoprints
dw disk insert 0 junk.dsk
When sending the same command through the remote REPL,
the following is returned:
b'option accept True\n\roption port 65503\n\roption cmdPort 6809\n\roption debug 1\n\roption printFormat pdf\n\roption printDir C:\Use
rs\z48176zz\AppData\Local\Temp\n\roption printPrefix cocoprints\n\rdw disk insert 0 junk.dsk\n'
The text was updated successfully, but these errors were encountered: