changed default depth to 1

This commit is contained in:
Alex 2022-04-16 18:33:12 -07:00 committed by asp
parent b0f5503cb8
commit 56c9098d6a
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ class Command(BaseRunSpiderCommand):
parser.add_argument("--cbkwargs", dest="cbkwargs",
help="inject extra callback kwargs into the Request, it must be a valid raw json string")
parser.add_argument("-d", "--depth", dest="depth", type=int, default=1,
help=f"maximum depth for parsing requests [default: {self.max_level}]")
help="maximum depth for parsing requests [default: 1]")
parser.add_argument("-v", "--verbose", dest="verbose", action="store_true",
help="print each depth level one by one")