Replaced deprecated string functions with newer versions compatible with Python 3.6. These functions also work with Python 2 as well.
Signed-off-by: Erik Stromdahl <[email protected]> --- scripts/show_delta | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/show_delta b/scripts/show_delta index 5b36500..e386827 100755 --- a/scripts/show_delta +++ b/scripts/show_delta @@ -46,8 +46,8 @@ def get_time(line): raise ValueError # split on closing bracket - (time_str, rest) = string.split(line[1:],']',1) - time = string.atof(time_str) + (time_str, rest) = line[1:].split(']',1) + time = float(time_str) #print "time=", time return (time, rest) -- 2.7.4

