Skip to content

Commit c11e527

Browse files
committed
fix logout
1 parent b01b7ea commit c11e527

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "meshcore"
7-
version = "0.4.1"
7+
version = "0.4.2"
88
authors = [
99
{ name="Florent de Lamotte", email="[email protected]" },
1010
]

src/meshcore/meshcore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ async def wait_login(self, timeout = 5):
350350

351351
async def send_logout(self, dst):
352352
self.login_resp = asyncio.Future()
353-
data = b"\x1d" + dst + pwd.encode("ascii")
353+
data = b"\x1d" + dst
354354
return await self.send(data)
355355

356356
async def send_statusreq(self, dst):

0 commit comments

Comments
 (0)