Fix incorrect indentation

This commit is contained in:
Torbjörn Lönnemark 2016-08-04 15:39:45 +02:00 committed by Torbjörn Lönnemark
parent b7fa2c4e21
commit a591e183bc

View File

@ -125,11 +125,11 @@ def _spider(args):
if abs_link in visited:
continue
# If we're not at max depth, follow links.
if depth < max_depth:
subcalls.append((abs_link, visited, root, None,
depth+1, max_depth, raise_on_error))
visited.add(abs_link)
# If we're not at max depth, follow links.
if depth < max_depth:
subcalls.append((abs_link, visited, root, None,
depth+1, max_depth, raise_on_error))
visited.add(abs_link)
if subcalls:
try: