# HG changeset patch # User Augie Fackler # Date 1538399141 14400 # Node ID cb9b23ec093c74bc9876866e66a85c166c7197af # Parent a24f4638d6c11525291590dfcd6be0c621f9763f catapipe: fix bug introduced when switching to the timer api Differential Revision: https://phab.mercurial-scm.org/D4818 diff -r a24f4638d6c1 -r cb9b23ec093c contrib/catapipe.py --- a/contrib/catapipe.py Sun Sep 30 03:45:51 2018 +0530 +++ b/contrib/catapipe.py Mon Oct 01 09:05:41 2018 -0400 @@ -71,7 +71,7 @@ if session not in _threadmap: _threadmap[session] = len(_threadmap) pid = _threadmap[session] - ts_micros = (now - start).total_seconds() * 1000000 + ts_micros = (now - start) * 1000000 out.write(json.dumps( { "name": label,