Skip to content

Commit

Permalink
fix critical bug
Browse files Browse the repository at this point in the history
  • Loading branch information
themanyfaceddemon committed Aug 25, 2024
1 parent 538eaee commit 1957cf7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DMBotNetwork/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .client import Client
from .server import Server

__version__ = "0.0.8"
__version__ = "0.0.81"
2 changes: 1 addition & 1 deletion DMBotNetwork/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ async def send_data(self, writer: StreamWriter, data: Any) -> None:
"""
try:
packed_data = msgpack.packb(data)
await self.send_raw(packed_data)
await self.send_raw(writer, packed_data)

except Exception as e:
logger.error(f"Error sending data: {e}")
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="DMBotNetwork",
version="0.0.8",
version="0.0.81",
packages=find_packages(),
install_requires=['aiosqlite', 'bcrypt', 'msgpack'],
author="Angels And Demons dev team",
Expand Down

0 comments on commit 1957cf7

Please sign in to comment.