Fix bug
authorTony Mack <tmack@paris.CS.Princeton.EDU>
Tue, 11 Dec 2012 02:25:17 +0000 (21:25 -0500)
committerTony Mack <tmack@paris.CS.Princeton.EDU>
Tue, 11 Dec 2012 02:25:17 +0000 (21:25 -0500)
PLC/NovaTable.py

index 43db8e8..59ca7ad 100644 (file)
@@ -16,5 +16,5 @@ class NovaTable(list):
     def dicts(self):
         result = []
         for obj in self:
-            result.append(obj.todict())
+            result.append(dict(obj))
         return result