profiles.py: Fix a logic error that sometimes caused config_profile_info() to return None instead of an empty dictionary

This commit is contained in:
Greg Neagle
2017-04-21 13:33:41 -05:00
parent 29cbf0a37f
commit eda5e76905
+1 -1
View File
@@ -71,7 +71,7 @@ def config_profile_info(ignore_cache=False):
os.unlink(output_plist + '.plist')
except BaseException:
pass
return config_profile_info.cache
return config_profile_info.cache
def info_for_installed_identifier(identifier, ignore_cache=False):