Got it working for python2 (that was easy)

This commit is contained in:
Michael Lazar
2016-08-09 02:15:40 -07:00
parent dedb0985f7
commit c7a409a192

View File

@@ -9,8 +9,8 @@ import codecs
import logging import logging
import threading import threading
from urllib.parse import urlparse, parse_qs from six.moves.urllib.parse import urlparse, parse_qs
from http.server import BaseHTTPRequestHandler, HTTPServer from six.moves.BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer
from . import docs from . import docs
from .config import TEMPLATES from .config import TEMPLATES