From: Anil-Kumar Vengalil Date: Mon, 4 Jan 2010 19:44:12 +0000 (+0000) Subject: list is a function in registry, hence using types.ListType X-Git-Tag: sfa-0.9-7~17 X-Git-Url: http://git.onelab.eu/?p=sfa.git;a=commitdiff_plain;h=5488cc501d7ee694bfc748b3dd9eee2a8c5247dd list is a function in registry, hence using types.ListType --- diff --git a/sfa/managers/registry_manager_pl.py b/sfa/managers/registry_manager_pl.py index 878b9566..f08e18d0 100644 --- a/sfa/managers/registry_manager_pl.py +++ b/sfa/managers/registry_manager_pl.py @@ -176,7 +176,7 @@ def register(api, record): uuid = create_uuid() pkey = Keypair(create=True) if 'key' in record and record['key']: - if isinstance(record['key'], list): + if isinstance(record['key'], types.ListType): pub_key = record['key'][0] else: pub_key = record['key'] @@ -310,7 +310,7 @@ def update(api, record_dict): keys = person['key_ids'] keys = api.plshell.GetKeys(api.plauth, person['key_ids']) key_exists = False - if isinstance(new_record['key'], list): + if isinstance(new_record['key'], types.ListType): new_key = new_record['key'][0] else: new_key = new_record['key']