Merge pull request #7335 from napkindrawing/patch-1
Route53 module handling of domains with "*" is broken
This commit is contained in:
commit
6e11558d52
1 changed files with 1 additions and 1 deletions
|
@ -223,7 +223,7 @@ def main():
|
|||
# Due to a bug in either AWS or Boto, "special" characters are returned as octals, preventing round
|
||||
# tripping of things like * and @.
|
||||
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:
|
||||
found_record = True
|
||||
|
|
Loading…
Reference in a new issue