diff --git a/cloud/amazon/route53.py b/cloud/amazon/route53.py index ab2f50e2996..d45c0f17902 100644 --- a/cloud/amazon/route53.py +++ b/cloud/amazon/route53.py @@ -482,7 +482,10 @@ def main(): #Need to save this changes in rset, because of comparing rset.to_xml() == wanted_rset.to_xml() in next block rset.name = decoded_name - if rset.type == type_in and decoded_name.lower() == record_in.lower() and str(rset.identifier) == str(identifier_in): + if identifier_in is not None: + identifier_in = str(identifier_in) + + if rset.type == type_in and decoded_name.lower() == record_in.lower() and rset.identifier == identifier_in: found_record = True record['zone'] = zone_in record['type'] = rset.type