Skip to content

Commit

Permalink
v1.17.1
Browse files Browse the repository at this point in the history
version 1.17.1
  • Loading branch information
thusser authored Sep 8, 2024
2 parents 2c75106 + 2ea527f commit 7e9577d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion pyobs/mixins/motionstatus.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,10 @@ async def _change_motion_status(self, status: MotionStatus, interface: Optional[
if interface is None:
# did status change?
if self.__motion_status != status:
# set it
# log and set it
changed = True
self.__motion_status = status
log.info("Changed motion status to %s.", status)

# also set all individual interfaces
for i in self.__motion_status_interfaces:
Expand All @@ -63,6 +64,7 @@ async def _change_motion_status(self, status: MotionStatus, interface: Optional[
# set it
self.__motion_status_single[interface] = status
changed = True
log.info("Changed motion status for interface %s to %s.", interface, status)

# combine status
self.__motion_status = self._combine_motion_status()
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "pyobs-core"
packages = [{ include = "pyobs" }]
version = "1.17.0"
version = "1.17.1"
description = "robotic telescope software"
authors = ["Tim-Oliver Husser <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 7e9577d

Please sign in to comment.