mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Merge 2d23a368c7 into 42b205d75c
This commit is contained in:
commit
970a4198f0
1 changed files with 5 additions and 1 deletions
|
|
@ -3,7 +3,11 @@ import fabric.contrib.project as project
|
|||
import os
|
||||
import shutil
|
||||
import sys
|
||||
import SocketServer
|
||||
|
||||
if sys.version_info.major == 2:
|
||||
import SocketServer
|
||||
elif sys.version_info.major == 3:
|
||||
import socketserver as SocketServer
|
||||
|
||||
from pelican.server import ComplexHTTPRequestHandler
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue