From: Tony Mack <tmack@paris.CS.Princeton.EDU> Date: Thu, 4 Oct 2012 17:27:35 +0000 (-0400) Subject: create() calls get_table() X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=2f65d35545c4c31285753d3d97b58c7f2bb70295;p=plcapi.git create() calls get_table() --- diff --git a/PLC/Storage/AlchemyObject.py b/PLC/Storage/AlchemyObject.py index ddf0adb8..98f1a61b 100644 --- a/PLC/Storage/AlchemyObject.py +++ b/PLC/Storage/AlchemyObject.py @@ -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()