I created a scrapy project form the command line and added two spiders, myspider1 and myspider2. Whenever I run "scrapy crawl myspider1" or ""scrapy crawl myspider2" it starts "myspider1".
When I run "scrapy list" it also starts myspider1
I am running this under a vertualenv in python but I can't understand why it does this. It seems that whenever I run a command with scrapy it always executes the first spider in my spiders folder.
Any idea on why this is happening?