Skip to content

Commit 51faf3f

Browse files
authored
Update README.md
1 parent c7c05db commit 51faf3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Scrapy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ start_urls = ["https://fundrazr.com/find?category=Health"]
6363
npages = 2
6464
6565
# This mimics getting the pages using the next button.
66-
for i in range(2, npages +1 ):
66+
for i in range(2, npages + 2 ):
6767
start_urls.append("https://fundrazr.com/find?category=Health&page="+str(i)+"")
6868
```
6969

0 commit comments

Comments
 (0)