X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=tools%2Freset_gids.py;h=e30ed329f796c35860c33acd77908c7865cd2545;hb=06768bd605e5d47fadfc90a35c74e30f267226a5;hp=453af29745091709a1fc8540b5fd00ca006a8062;hpb=206464bf5bb18cf88b62ebd1035a31f437532023;p=sfa.git diff --git a/tools/reset_gids.py b/tools/reset_gids.py index 453af297..e30ed329 100755 --- a/tools/reset_gids.py +++ b/tools/reset_gids.py @@ -1,8 +1,6 @@ #!/usr/bin/env python # -*- coding:utf-8 -*- -import types - from sfa.storage.model import * from sfa.storage.alchemy import * from sfa.trust.gid import create_uuid @@ -20,9 +18,9 @@ def fix_users(): uuid = create_uuid() pkey = Keypair(create=True) pub_key=getattr(record,'reg_keys',None) - if pub_key is not None: + if len(pub_key) > 0: # use only first key in record - if pub_key and isinstance(pub_key, types.ListType): pub_key = pub_key[0] + if pub_key and isinstance(pub_key, list): pub_key = pub_key[0] pub_key = pub_key.key pkey = convert_public_key(pub_key) urn = Xrn (xrn=record.hrn, type='user').get_urn()