2017-04-12 9 views
0

コマンド:は、PyPIサーバー-p 8080 -v〜/パッケージランニングは、PyPIサーバーはValueErrorを取得中:フォーマットの長さがゼロのフィールド名

2017年4月12日10:45:11939 | pypiserver.bottle | INFO | 139762541180672 |ボトルv0.13-devサーバーの起動(AutoServer()を使用)... 2017-04-12 10:45:11,939 | pypiserver.bottle | INFO | 139762541180672 |リスニ​​ングオンhttp://0.0.0.0:8080/ 2017-04-12 10:45:11,939 | pypiserver.bottle | INFO | 139762541180672 |終了するにはCtrl + Cキーを押します。

Traceback (most recent call last): 
    File "/usr/local/bin/pypi-server", line 9, in <module> 
    load_entry_point('pypiserver==1.2.0', 'console_scripts', 'pypi-server')() 
    File "build/bdist.linux-x86_64/egg/pypiserver/__main__.py", line 296, in main 
    File "build/bdist.linux-x86_64/egg/pypiserver/bottle.py", line 3270, in run 
    File "build/bdist.linux-x86_64/egg/pypiserver/bottle.py", line 3106, in run 
    File "build/bdist.linux-x86_64/egg/pypiserver/bottle.py", line 2876, in run 
    File "/usr/local/lib64/python2.6/site-packages/waitress-1.0.1-py2.6.egg/waitress/__init__.py", line 1, in <module> 
    from waitress.server import create_server 
    File "/usr/local/lib64/python2.6/site-packages/waitress-1.0.1-py2.6.egg/waitress/server.py", line 22, in <module> 
    from waitress.adjustments import Adjustments 
    File "/usr/local/lib64/python2.6/site-packages/waitress-1.0.1-py2.6.egg/waitress/adjustments.py", line 75, in <module> 
    class Adjustments(object): 
    File "/usr/local/lib64/python2.6/site-packages/waitress-1.0.1-py2.6.egg/waitress/adjustments.py", line 116, in Adjustments 
    listen = ['{}:{}'.format(host, port)] 
ValueError: zero length field name in format 

答えて

4

あなたはPython 2.6を使用しています。ここでは、フォーマットフィールドに明示的に番号を付ける必要があります。 pythonあなたのコードlisten = ['{}:{}'.format(host, port)]

In python 2.7 '{} {}' is equivalent to '{0} {1}' so in python 2.7 you can use listen = ['{}:{}'.format(host, port)] , but not in python 2.6.

+0

@Michael listen = ['{0}:{1}'.format(host, port)]に変更する必要が2.6の場合

:あなたが聞い '試さ持っている= [ '{0}:{1}'。形式(ホスト、ポート)]' 'waitress/adjustments.py'にありますか? – Surajano

関連する問題