From 39c7eb7762cac62972834ae8966b687710d69e9c Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sun, 17 May 2015 15:51:33 +0200 Subject: typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/bus.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bus.py b/src/bus.py index f59ad1b..08e8a9b 100644 --- a/src/bus.py +++ b/src/bus.py @@ -172,7 +172,7 @@ class Bus: if clock_id is None: import time clock_id = time.CLOCK_MONOTONIC_RAW - timeout += timeout.clock_gettime(clock_id) + timeout += time.clock_gettime(clock_id) (r, e) = bus_write_timed_wrapped(self.bus, message, timeout, clock_id) if r == -1: raise self.__oserror(e) @@ -242,7 +242,7 @@ class Bus: if clock_id is None: import time clock_id = time.CLOCK_MONOTONIC_RAW - timeout += timeout.clock_gettime(clock_id) + timeout += time.clock_gettime(clock_id) (r, e) = bus_read_timed_wrapped(self.bus, callback, user_data, timeout, clock_id) if r == -1: raise self.__oserror(e) @@ -317,7 +317,7 @@ class Bus: if clock_id is None: import time clock_id = time.CLOCK_MONOTONIC_RAW - timeout += timeout.clock_gettime(clock_id) + timeout += time.clock_gettime(clock_id) (message, e) = bus_poll_timed_wrapped(self.bus, timeout, clock_id) if message is None: raise self.__oserror(e) -- cgit v1.2.3-70-g09d2