From c4d75bec702b18356a771b5983fdab8a25b368ce Mon Sep 17 00:00:00 2001 From: Razvan Deaconescu Date: Fri, 4 Dec 2009 10:59:45 +0200 Subject: [PATCH] updated use of next(object) iterator function to object.next() --- viewer/p2p-nexteditor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/viewer/p2p-nexteditor.py b/viewer/p2p-nexteditor.py index 25d6b42..26d1d47 100644 --- a/viewer/p2p-nexteditor.py +++ b/viewer/p2p-nexteditor.py @@ -55,7 +55,7 @@ class PlotterThread(Thread): stmit = stmc.getIter() while True: try: - stm = next(stmit) + stm = stmit.next() except StopIteration: break date1 = julianToDatetime(stm.timestamp) -- 2.20.1