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
Remove uneeded , case it was handling is now down in the cstor
pull/929/head
Ross McFarland
3 years ago
parent
9da2c15328
commit
e875ca0304
No known key found for this signature in database
GPG Key ID:
943B179E15D3B22A
1 changed files
with
1 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-2
octodns/record/__init__.py
+ 1
- 2
octodns/record/__init__.py
View File
@ -832,8 +832,7 @@ class _IpAddress(str):
return
[
cls
(
v
)
if
v
!=
'
'
else
'
'
for
v
in
values
]
def
__new__
(
cls
,
v
)
:
if
v
:
v
=
str
(
cls
.
_address_type
(
v
)
)
v
=
str
(
cls
.
_address_type
(
v
)
)
return
super
(
)
.
__new__
(
cls
,
v
)
Write
Preview
Loading…
Cancel
Save