Skip to content

Commit

Permalink
Merge branch 'stateengine' of https://github.com/onkelandy/plugins in…
Browse files Browse the repository at this point in the history
…to stateengine
  • Loading branch information
onkelandy committed Jul 4, 2024
2 parents 4dff89a + 3cb11cc commit 2a9433f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stateengine/StateEngineCondition.py
Original file line number Diff line number Diff line change
Expand Up @@ -856,7 +856,7 @@ def check_eval(eval_or_status_eval):

if self.__status is not None:
# noinspection PyUnusedLocal
self._log_debug("Trying to get {} of status item {}", eval_type, self.__status)
self._log_debug("Trying to get {} of status item {}", eval_type, self.__status.property.path)
return self.__status.property.last_change_age if eval_type == 'age' else\
self.__status.property.last_change_by if eval_type == 'changedby' else\
self.__status.property.last_update_by if eval_type == 'updatedby' else\
Expand All @@ -868,7 +868,7 @@ def check_eval(eval_or_status_eval):
return return_value
elif self.__item is not None:
# noinspection PyUnusedLocal
self._log_debug("Trying to get {} of item {}", eval_type, self.__item)
self._log_debug("Trying to get {} of item {}", eval_type, self.__item.property.path)
return self.__item.property.last_change_age if eval_type == 'age' else\
self.__item.property.last_change_by if eval_type == 'changedby' else\
self.__item.property.last_update_by if eval_type == 'updatedby' else\
Expand Down

0 comments on commit 2a9433f

Please sign in to comment.