mirror of https://github.com/scrapy/scrapy.git
Update shell help with availability of scrapy module
This commit is contained in:
parent
105163fece
commit
effaab867e
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Reference in New Issue