diff -r bcc07ff2362c -r d5df428640ff graphics/DebugDataConsumer.py --- a/graphics/DebugDataConsumer.py Thu Aug 17 14:27:06 2017 +0300 +++ b/graphics/DebugDataConsumer.py Thu Aug 17 15:43:25 2017 +0300 @@ -44,8 +44,8 @@ @param value: Time duration to convert @return: Time duration expressed in microsecond """ - return float(value.days * DAY + \ - value.seconds * SECOND + \ + return float(value.days * DAY + + value.seconds * SECOND + value.microseconds) return