handle legacy profile formats in fetching profile data

This commit is contained in:
Aaron Blankstein
2017-04-12 15:51:55 -04:00
parent 877d213e94
commit 33943b8f0e
2 changed files with 6 additions and 1 deletions

View File

@@ -89,7 +89,7 @@ def fetch_profiles(max_to_fetch = None):
resp['fqu'] = fqu
try:
resp['profile'] = get_profile(fqu)[0]
resp['profile'] = get_profile(fqu, use_legacy = True)[0]
all_profiles.append(resp)
except KeyboardInterrupt as e:
raise e