Skip to content

Commit

Permalink
fix issue #8
Browse files Browse the repository at this point in the history
  • Loading branch information
drunsinn committed Apr 13, 2021
1 parent b24656c commit 2923196
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
tfischer73
drunsinn
WouterElfrink
kekec14

## Compatibility
Since there are a lot of different software versions and machine configurations out there
Expand All @@ -49,6 +50,7 @@ on programming stations but also with real hardware. Here is a list of versions
|-------------|----------------|
| TNC640 | 340595 08 SP1 |
| iTNC530 | 340480 14 SP4 |
| iTNC530 | 606420 02 SP14 |

If you have tested it on one of your machines with a different software version, please let us know!

Expand Down
2 changes: 1 addition & 1 deletion pyLSV2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
"""A pure Python3 implementation of the LSV2 protocol"""
from .client import LSV2

__version__ = '0.6.3'
__version__ = '0.6.4'
2 changes: 1 addition & 1 deletion pyLSV2/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1174,7 +1174,7 @@ def recive_file(self, remote_path, local_path, override_file=False, binary_mode=
if binary_mode:
out_file.write(content)
else:
out_file.write(content.replace(b'\x00', b''))
out_file.write(content.replace(b'\x00', b'\r\n'))
logging.debug(
'received %d more bytes for file', len(content))
elif response in self.RESPONSE_T_FD:
Expand Down

0 comments on commit 2923196

Please sign in to comment.