Open whym opened 9 years ago
The all-catch exception handling (except Exception as e) leaves possible failures unnoticed.
except Exception as e
Expected errors such as ipwhois.WhoisLookupError safe to pass, but other IO errors might not be so.
ipwhois.WhoisLookupError
The all-catch exception handling (
except Exception as e
) leaves possible failures unnoticed.Expected errors such as
ipwhois.WhoisLookupError
safe to pass, but other IO errors might not be so.