Skip to content
This repository has been archived by the owner on Mar 11, 2024. It is now read-only.

Fix error when attempting to send a frame. #24

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion aprs/classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ def send(self, frame):
self._logger.info('Sending frame="%s"', frame)

# Unicode Sandwich: Send bytes.
_frame = bytes(frame + b'\n\r')
_frame = bytes(frame) + b'\n\r'

return self.interface.send(_frame)

Expand Down