Skip to content

Commit

Permalink
Merge pull request #3047 from stevepiercy/1.7-branch
Browse files Browse the repository at this point in the history
remove bad path from python executable
  • Loading branch information
stevepiercy authored May 17, 2017
2 parents 0808af5 + 848638a commit c8f5b7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/quick_tour.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ For Windows:
# set an environment variable to where you want your virtual environment
c:\\> set VENV=c:\\env
# create the virtual environment
c:\\> %VENV%\\Scripts\\python -m venv %VENV%
c:\\> python -m venv %VENV%
# install pyramid
c:\\> %VENV%\\Scripts\\pip install pyramid
# or for a specific released version
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/wiki/authorization.rst
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ Our ``tutorial/views.py`` will look like this when we're done:

.. literalinclude:: src/authorization/tutorial/views.py
:linenos:
:emphasize-lines: 8,11-15,17,24,29,48,52,68,72,80,82-120
:emphasize-lines: 6-17,23-24,28-29,46-48,51-52,66-68,71-72,79-
:language: python

Only the highlighted lines need to be added or edited.
Expand Down

0 comments on commit c8f5b7d

Please sign in to comment.