Skip to content

Commit

Permalink
Merge pull request #1080 from malept/clarify-pythonpath-docs
Browse files Browse the repository at this point in the history
Clarify pythonpath setting description
  • Loading branch information
benoitc committed Jul 13, 2015
2 parents ec3664d + a33f6ea commit f5a2942
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/source/settings.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
~~~~~
Expand Down
4 changes: 2 additions & 2 deletions gunicorn/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'.
"""


Expand Down

0 comments on commit f5a2942

Please sign in to comment.