diff options
author | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-03-18 13:15:42 -0400 |
---|---|---|
committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-03-18 13:15:42 -0400 |
commit | 16dfc8df20c6befeed423217a2e0f5ae59b5a04d (patch) | |
tree | 722ff18b111f6ab2fc11fffa46e78889bd2d5708 /parse/point.py | |
parent | 652a57b5a53e41e585c7e0d10601c807ba08c36f (diff) |
Use smarter defaults which can handle data from Bjorns scripts.
Diffstat (limited to 'parse/point.py')
-rw-r--r-- | parse/point.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/parse/point.py b/parse/point.py index d577306..f2b266a 100644 --- a/parse/point.py +++ b/parse/point.py | |||
@@ -128,8 +128,7 @@ class ExpPoint(object): | |||
128 | self.stats[type] = value | 128 | self.stats[type] = value |
129 | 129 | ||
130 | def __str__(self): | 130 | def __str__(self): |
131 | # return "<ExpPoint-%s>\n%s" % (self.id, dict_str(self.stats)) | 131 | return "<ExpPoint-%s>\n%s" % (self.id, dict_str(self.stats)) |
132 | return "<ExpPoint-%s>" % (self.id) | ||
133 | 132 | ||
134 | def get_stats(self): | 133 | def get_stats(self): |
135 | return self.stats.keys() | 134 | return self.stats.keys() |