This website works better with JavaScript.
Home
Explore
Help
Sign In
RuhNetConsulting
/
octodns
mirror of
https://github.com/octodns/octodns
Watch
1
Star
0
Fork
0
Code
Issues
0
Projects
0
Releases
52
Wiki
Activity
Browse Source
Escape semicolons read in from TinyDNS TXT records
pull/343/head
Andy Hawkins
7 years ago
parent
3b98f3e0e1
commit
799e939381
1 changed files
with
2 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
octodns/source/tinydns.py
+ 2
- 1
octodns/source/tinydns.py
View File
@ -64,7 +64,8 @@ class TinyDnsBaseSource(BaseSource):
values
=
[
]
values
=
[
]
for
record
in
records
:
for
record
in
records
:
values
.
append
(
record
[
0
]
.
decode
(
'
unicode-escape
'
)
)
new_value
=
record
[
0
]
.
decode
(
'
unicode-escape
'
)
.
replace
(
"
;
"
,
"
\\
;
"
)
values
.
append
(
new_value
)
try
:
try
:
ttl
=
records
[
0
]
[
1
]
ttl
=
records
[
0
]
[
1
]
Write
Preview
Loading…
Cancel
Save