diff lib/cycloneerr.py @ 447:3d51d4b63497

patchsource py3 support. might break py2 Ignore-this: e7559afeb74ffa53bf2085f78455014
author drewp@bigasterisk.com
date Thu, 18 Apr 2019 21:58:19 -0700
parents 053fd552b675
children a63549a50b3f
line wrap: on
line diff
--- a/lib/cycloneerr.py	Thu Apr 18 16:55:52 2019 -0700
+++ b/lib/cycloneerr.py	Thu Apr 18 21:58:19 2019 -0700
@@ -1,7 +1,7 @@
 try:
     import httplib
 except ImportError:
-    import http.client as httplib
+    import http.client as httplib  # type: ignore
 import cgi
 
 class PrettyErrorHandler(object):