create() calls get_table()
authorTony Mack <tmack@paris.CS.Princeton.EDU>
Thu, 4 Oct 2012 17:27:35 +0000 (13:27 -0400)
committerTony Mack <tmack@paris.CS.Princeton.EDU>
Thu, 4 Oct 2012 17:27:35 +0000 (13:27 -0400)
PLC/Storage/AlchemyObject.py

index ddf0adb..98f1a61 100644 (file)
@@ -52,8 +52,7 @@ class AlchemyObj(Record):
         return table
 
     def create(self):
-        table = self.get_table()
-        table.create()    
+        self.get_table()
 
     def insert(self, values):
         table = self.get_table()