From 2f65d35545c4c31285753d3d97b58c7f2bb70295 Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Thu, 4 Oct 2012 13:27:35 -0400 Subject: [PATCH] create() calls get_table() --- PLC/Storage/AlchemyObject.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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() -- 2.47.0