[libvirt] [PATCH libvirt-python v2 02/22] event-test.py: Remove extra parenthesis

Philipp Hahn hahn at univention.de
Fri Sep 21 13:34:57 UTC 2018


Signed-off-by: Philipp Hahn <hahn at univention.de>
---
 examples/event-test.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/event-test.py b/examples/event-test.py
index c17d2bb..a7c7054 100755
--- a/examples/event-test.py
+++ b/examples/event-test.py
@@ -224,7 +224,7 @@ class virEventLoopPoll:
                 want = t.get_last_fired() + interval
                 # Deduct 20ms, since scheduler timeslice
                 # means we could be ever so slightly early
-                if now >= (want-20):
+                if now >= want - 20:
                     debug("Dispatch timer %d now %s want %s" % (t.get_id(), str(now), str(want)))
                     t.set_last_fired(now)
                     t.dispatch()
-- 
2.11.0




More information about the libvir-list mailing list