Skip to content

Commit 524fe8c

Browse files
committed
Add Fax_Number and Organization to WhoisRegistrantInfoType constructor.
1 parent ddf274b commit 524fe8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cybox/bindings/whois_object.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -509,8 +509,8 @@ class WhoisRegistrantInfoType(WhoisContactType):
509509

510510
subclass = None
511511
superclass = WhoisContactType
512-
def __init__(self, contact_type=None, Contact_ID=None, Name=None, Email_Address=None, Phone_Number=None, Address=None, Registrant_ID=None):
513-
super(WhoisRegistrantInfoType, self).__init__(contact_type, Contact_ID, Name, Email_Address, Phone_Number, Address, )
512+
def __init__(self, contact_type=None, Contact_ID=None, Name=None, Email_Address=None, Phone_Number=None, Fax_Number=None, Address=None, Organization=None, Registrant_ID=None):
513+
super(WhoisRegistrantInfoType, self).__init__(contact_type, Contact_ID, Name, Email_Address, Phone_Number, Fax_Number, Address, Organization, )
514514
self.Registrant_ID = Registrant_ID
515515
def factory(*args_, **kwargs_):
516516
if WhoisRegistrantInfoType.subclass:

0 commit comments

Comments
 (0)