summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xgpsprof4
1 files changed, 2 insertions, 2 deletions
diff --git a/gpsprof b/gpsprof
index 63090048..88dc4273 100755
--- a/gpsprof
+++ b/gpsprof
@@ -58,7 +58,7 @@ class plotter:
def __init__(self):
self.fixes = []
self.start_time = int(time.time())
- self.watch = {"TPV"}
+ self.watch = set(['TPV'])
def whatami(self):
"How do we identify this plotting run?"
@@ -282,7 +282,7 @@ class timeplot(plotter):
def __init__(self):
plotter.__init__(self)
- self.watch = {"PPS"}
+ self.watch = set(['PPS'])
def sample(self):
if self.session.data["class"] == "PPS":