Clarify pythonpath setting description

Show that setting multiple paths requires using a comma-separated list.
This commit is contained in:
Mark Lee 2015-07-12 18:13:17 -07:00
parent ec3664dd30
commit a33f6ea602
2 changed files with 4 additions and 4 deletions

View File

@ -670,10 +670,10 @@ pythonpath
* ``--pythonpath STRING``
* ``None``
A directory to add to the Python path.
A comma-separated list of directories to add to the Python path.
e.g.
'/home/djangoprojects/myproject'.
'/home/djangoprojects/myproject,/home/python/mylibrary'.
paste
~~~~~

View File

@ -1308,10 +1308,10 @@ class PythonPath(Setting):
validator = validate_string
default = None
desc = """\
A directory to add to the Python path.
A comma-separated list of directories to add to the Python path.
e.g.
'/home/djangoprojects/myproject'.
'/home/djangoprojects/myproject,/home/python/mylibrary'.
"""