From effaab867e45d441b5ca99ea6b24fd423e256a33 Mon Sep 17 00:00:00 2001 From: Paul Tremberth Date: Thu, 15 Sep 2016 21:37:15 +0200 Subject: [PATCH] Update shell help with availability of scrapy module --- scrapy/shell.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scrapy/shell.py b/scrapy/shell.py index 4f9f06561..183ee1f70 100644 --- a/scrapy/shell.py +++ b/scrapy/shell.py @@ -139,6 +139,7 @@ class Shell(object): def get_help(self): b = [] b.append("Available Scrapy objects:") + b.append(" scrapy scrapy module (contains scrapy.Request, scrapy.Selector, etc)") for k, v in sorted(self.vars.items()): if self._is_relevant(v): b.append(" %-10s %s" % (k, v))