Use single quotes uniformly

The default spider template mixes single and double quotes.
This commit is contained in:
Arvind Chembarpu 2017-02-25 16:48:17 +05:30 committed by GitHub
parent d6a8288a48
commit e85f0db128
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@ import scrapy
class $classname(scrapy.Spider):
name = "$name"
allowed_domains = ["$domain"]
name = '$name'
allowed_domains = ['$domain']
start_urls = ['http://$domain/']
def parse(self, response):