pymud 0.19.2.post3__py3-none-any.whl → 0.19.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
pymud/session.py CHANGED
@@ -614,7 +614,7 @@ class Session:
614
614
 
615
615
  else:
616
616
  cmdtext, code = cl.expand(self, *args, **kwargs)
617
- self.exec_text(cmdtext)
617
+ await self.exec_text_async(cmdtext)
618
618
 
619
619
  def exec_text(self, cmdtext: str):
620
620
  """
pymud/settings.py CHANGED
@@ -11,7 +11,7 @@ class Settings:
11
11
  "APP 名称, 默认PYMUD"
12
12
  __appdesc__ = "a MUD client written in Python"
13
13
  "APP 简要描述"
14
- __version__ = "0.19.2"
14
+ __version__ = "0.19.3"
15
15
  "APP 当前版本"
16
16
  __release__ = "2024-03-22"
17
17
  "APP 当前版本发布日期"