1
0
mirror of https://github.com/pypiserver/pypiserver synced 2024-11-09 16:45:51 +01:00

Fix broken example of auther usage

This commit is contained in:
Youhei Sakurai 2016-09-23 12:54:04 +09:00
parent 6777a78662
commit 096ff074bf

@ -688,7 +688,7 @@ these steps:
import pypiserver
from pypiserver import bottle
import pam
pypiserver.app(root='./packages', auther=pam.authenticate)
app = pypiserver.app(root='./packages', auther=pam.authenticate)
bottle.run(app=app, host='0.0.0.0', port=80, server='auto')
[Ctrl+ D]