This commit is contained in:
Wolfgang Hottgenroth
2008-03-20 11:31:11 +01:00
parent 982dea718c
commit 0fc9605855

View File

@ -2,7 +2,7 @@ import threading
import time
import Event
from logger import Logger
import BaseHttpServer
import BaseHTTPServer
import Entry
@ -10,7 +10,7 @@ class LocalException(Exception):
def __init__(self, msg):
self.msg = msg
class HttpCmdHandler(BaseHttpServer.BaseHTTPRequestHandler):
class HttpCmdHandler(BaseHTTPServer.BaseHTTPRequestHandler):
server_version = "YadynCMDHTTP/1.0"
@classmethod