diff --git a/a_sync/primitives/locks/counter.pyx b/a_sync/primitives/locks/counter.pyx index 26a1b742..8ad72bcb 100644 --- a/a_sync/primitives/locks/counter.pyx +++ b/a_sync/primitives/locks/counter.pyx @@ -210,7 +210,7 @@ cdef class CounterLock(_DebugDaemonMixin): while self._events: now = time(NULL) self.get_logger().debug( - "%s is still locked after %sm", self, round(now - start / 60, 2) + "%s is still locked after %sm", self, round((now - start) / 60, 2) ) await sleep(300)