diff --git a/pyproject.toml b/pyproject.toml index 0266a79..2d1e2d3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "xair-api" -version = "2.0.1" +version = "2.0.2" description = "Remote control Behringer X-Air | Midas MR mixers through OSC" authors = ["onyx-and-iris "] license = "MIT" diff --git a/xair_api/xair.py b/xair_api/xair.py index e9324cb..456e9bf 100644 --- a/xair_api/xair.py +++ b/xair_api/xair.py @@ -97,7 +97,7 @@ class XAirRemote(abc.ABC): self._info_response = data[:] def send(self, addr: str, param: Optional[str] = None): - self.logger.debug(f"sending: {addr} {param if param else ''}") + self.logger.debug(f"sending: {addr} {param if param is not None else ''}") self.server.send_message(addr, param) time.sleep(self._WAIT_TIME)