Commit 1a52fcce by James Cammarata

Merge pull request #7335 from napkindrawing/patch-1

Route53 module handling of domains with "*" is broken
parents 943723f2 011ec5d9
...@@ -223,7 +223,7 @@ def main(): ...@@ -223,7 +223,7 @@ def main():
# Due to a bug in either AWS or Boto, "special" characters are returned as octals, preventing round # Due to a bug in either AWS or Boto, "special" characters are returned as octals, preventing round
# 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 = rset.name.replace(r'\100', '@') decoded_name = decoded_name.replace(r'\100', '@')
if rset.type == type_in and decoded_name == record_in: if rset.type == type_in and decoded_name == record_in:
found_record = True found_record = True
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment