add note about enclosing urls with quotes when running from command-line. closes GH-384

This commit is contained in:
Pablo Hoffman 2013-09-18 18:01:28 -03:00
parent bb8cb41777
commit b1d1a36a1e
1 changed files with 7 additions and 1 deletions

View File

@ -239,7 +239,13 @@ installed on your system.
To start a shell, you must go to the project's top level directory and run::
scrapy shell http://www.dmoz.org/Computers/Programming/Languages/Python/Books/
scrapy shell "http://www.dmoz.org/Computers/Programming/Languages/Python/Books/"
.. note::
Remember to always enclose urls with quotes when running Scrapy shell from
command-line, otherwise urls containing arguments (ie. ``&`` character)
will not work.
This is what the shell looks like::