Save changes of special characters to rset, without that comparison rset.to_xml() == wanted_rset.to_xml() will fail if record contains * or @ characters.

pull/18777/head
Marcin Stolarek 9 years ago committed by Matt Clay
parent 3c7787c05c
commit d3029a6059

@ -404,6 +404,8 @@ def main():
# tripping of things like * and @. # tripping of things like * and @.
decoded_name = rset.name.replace(r'\052', '*') decoded_name = rset.name.replace(r'\052', '*')
decoded_name = decoded_name.replace(r'\100', '@') decoded_name = decoded_name.replace(r'\100', '@')
#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 rset.identifier == str(identifier_in): if rset.type == type_in and decoded_name.lower() == record_in.lower() and rset.identifier == str(identifier_in):
found_record = True found_record = True

Loading…
Cancel
Save