I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 8c31e47e authored by aum's avatar aum Committed by zzz
Browse files

Fixed example to import correct modules

parent d8ee5c18
No related branches found
No related tags found
No related merge requests found
......@@ -2,12 +2,12 @@
myServerAddress = "mytestxxx.i2p"
from i2p import BaseHTTPServer, CGIHTTPServer
from i2p import I2PBaseHTTPServer, I2PCGIHTTPServer
class MyServer(BaseHTTPServer.HTTPServer):
class MyServer(I2PBaseHTTPServer.HTTPServer):
pass
class MyRequestHandler(CGIHTTPServer.CGIHTTPRequestHandler):
class MyRequestHandler(I2PCGIHTTPServer.CGIHTTPRequestHandler):
pass
def runServer():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment