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

Commit

Permalink
fix send complete message
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxluigi committed Jun 26, 2019
1 parent 5d1efe5 commit afd9100
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylorawebchat/chat/lora_daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def __init__(self, address: str = None, msg: str = None):

def from_string(self, message_string: str):
self.address = message_string[:4]
self.msg = message_string[5:]
self.msg = message_string[4:]
print("{}: {}".format(self.address, self.msg))

def to_string(self):
Expand Down

0 comments on commit afd9100

Please sign in to comment.