Remove python 2.6 and 3.3 everywhere. (#2583)

This commit is contained in:
Hsiaoming Yang 2018-01-06 18:49:50 +09:00 committed by Armin Ronacher
parent 22e072379b
commit 60eecb547d
4 changed files with 4 additions and 5 deletions

View file

@ -111,7 +111,7 @@ Set yourapplication.fcgi::
#!/usr/bin/python
#: optional path to your local python site-packages folder
import sys
sys.path.insert(0, '<your_local_path>/lib/python2.6/site-packages')
sys.path.insert(0, '<your_local_path>/lib/python<your_python_version>/site-packages')
from flup.server.fcgi import WSGIServer
from yourapplication import app