From e469a0c741832f6584513f4a382d6b93f417b8d2 Mon Sep 17 00:00:00 2001 From: Dylan Deng Date: Sat, 23 Jun 2018 15:02:26 +0800 Subject: fix some sync error while using python3 Change-Id: I70925e48756c356d48359679d8ad1b9e33a68595 --- event_log.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'event_log.py') diff --git a/event_log.py b/event_log.py index 45a2c268..2f1b180b 100644 --- a/event_log.py +++ b/event_log.py @@ -18,6 +18,8 @@ from __future__ import print_function import json import multiprocessing +from pyversion import is_python3 + TASK_COMMAND = 'command' TASK_SYNC_NETWORK = 'sync-network' TASK_SYNC_LOCAL = 'sync-local' @@ -71,7 +73,7 @@ class EventLog(object): A dictionary of the event added to the log. """ event = { - 'id': (kind, self._next_id.next()), + 'id': (kind, self._next_id.__next__() if is_python3() else self._next_id.next()), 'name': name, 'task_name': task_name, 'start_time': start, -- cgit v1.2.3-54-g00ecf