rivermont / spidy

The simple, easy to use command line web crawler.
GNU General Public License v3.0
334 stars 69 forks source link

Getting indent error when running on fresh install. #84

Closed namelessperson0 closed 2 years ago

namelessperson0 commented 2 years ago

Getting the below error

  File "crawler.py", line 217
    package='reppy')
    ^
IndentationError: unexpected indent

when running python crawler.py

Incidentally, that line was changed recently in https://github.com/rivermont/spidy/commit/3a62f5edb8f03a87ef858e0cc27f8757097d1979

paraita commented 2 years ago

I confirm that fixed the issue for me 👍

rivermont commented 2 years ago

Thanks for the catch @namelessperson0. However we shouldn't remove the package arg as it's there for a reason. The problem was the extra parenthesis at the end of the line.

Fixed in 59e124d.