From da2cfb4ccfbea5585f9236068b0d34f0837dc661 Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Wed, 25 Aug 2010 19:32:28 +0000 Subject: [PATCH] SfaTable module depends on pdg (postgres) package being installed. Move the import into the methods that needs access to this libaray so that this module can be imported/used on systems that dont haave postgres installed --- sfa/server/interface.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sfa/server/interface.py b/sfa/server/interface.py index 6492e70c..dbc54891 100644 --- a/sfa/server/interface.py +++ b/sfa/server/interface.py @@ -7,7 +7,6 @@ from sfa.util.faults import * from sfa.util.storage import * from sfa.util.namespace import * from sfa.trust.gid import GID -from sfa.util.table import SfaTable from sfa.util.record import SfaRecord import traceback import sfa.util.xmlrpcprotocol as xmlrpcprotocol @@ -150,6 +149,8 @@ class Interfaces(dict): defined in the config file (registries.xml). Removes old records from the db. """ + # import SfaTable here so this module can be loaded by CompoenetAPI + from sfa.util.table import SfaTable if not gids: return -- 2.47.0