# HG changeset patch # User Goffi # Date 1587387118 -7200 # Node ID aa71f1d40300a232d8b23698988a1f02b139e32a # Parent a9e8e925ad99639c867ac95795036a6b2def9a55 plugin identity: fixed update when cached data is None diff -r a9e8e925ad99 -r aa71f1d40300 sat/plugins/plugin_misc_identity.py --- a/sat/plugins/plugin_misc_identity.py Sun Apr 19 22:52:15 2020 +0200 +++ b/sat/plugins/plugin_misc_identity.py Mon Apr 20 14:51:58 2020 +0200 @@ -361,6 +361,8 @@ f"{metadata_name} for {entity} is already disabled, nothing to " f"do") return + elif cached_data is None: + pass elif not update_is_new_data(client, entity, cached_data, data): log.debug( f"{metadata_name} for {entity} is already in cache, nothing to "