From 09241685092fff2028b444dda663994611af319c Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Thu, 6 May 2010 14:57:07 +0000 Subject: [PATCH] fix typos --- sfa/server/sfa-ca.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sfa/server/sfa-ca.py b/sfa/server/sfa-ca.py index f7604646..aac02086 100755 --- a/sfa/server/sfa-ca.py +++ b/sfa/server/sfa-ca.py @@ -181,7 +181,7 @@ def import_gid(options): record_dict = defaultdict(list) # only get regords that belong to this authority # or any of its sub authorities - all_records = table.find({'hrn': '%s*' % gid.get_hrn()]) + all_records = table.find({'hrn': '%s*' % gid.get_hrn()}) for record in records: record_dict[record['authority']].append(record) @@ -209,7 +209,7 @@ def import_gid(options): # update list of next authorities tmp_authorities = set([record['hrn'] for record in records \ - if record['type'] == 'authority'])) + if record['type'] == 'authority']) next_authorities.extend(tmp_authorities) # move on to next set of authorities -- 2.43.0