From 169dc2860e9f7054c50c84f5adcd8a0d5afe161e Mon Sep 17 00:00:00 2001 From: Weldon Malbrough Date: Mon, 16 Oct 2017 22:46:32 -0400 Subject: [PATCH] Update tutorial.rst startproject files Added middlewares.py to accurately reflect the file structure created by "scrapy startproject tutorial" --- docs/intro/tutorial.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/intro/tutorial.rst b/docs/intro/tutorial.rst index 29f54bc86..a02c759bb 100644 --- a/docs/intro/tutorial.rst +++ b/docs/intro/tutorial.rst @@ -54,6 +54,8 @@ This will create a ``tutorial`` directory with the following contents:: __init__.py items.py # project items definition file + + middlewares.py # project middlewares file pipelines.py # project pipelines file