whois/whois.py
branchpython3
changeset 73 644d81a7995b
parent 71 b181f795cc0d
child 81 359baebcf0e8
--- a/whois/whois.py	Sun Feb 07 23:38:20 2016 +0100
+++ b/whois/whois.py	Sun Feb 07 23:40:59 2016 +0100
@@ -134,7 +134,6 @@
 
     def choose_server(self, domain):
         """Choose initial lookup NIC host"""
-        print('domain:', domain)
         if type(domain) is not str:
             domain = domain.decode('utf-8').encode('idna').decode('utf-8')
         if domain.endswith("-NORID"):
@@ -172,7 +171,6 @@
             )
         elif self.use_qnichost:
             nichost = self.choose_server(query_arg)
-            print('nichost:', nichost)
             if nichost is not None:
                 result = self.whois(query_arg, nichost, flags)
             else: