Merge pull request #1080 from malept/clarify-pythonpath-docs

Clarify pythonpath setting description
This commit is contained in:
Benoit Chesneau 2015-07-13 11:04:57 +02:00
commit f5a2942d8a
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'.
"""