mirror of https://github.com/scrapy/scrapy.git
Use single quotes uniformly
The default spider template mixes single and double quotes.
This commit is contained in:
parent
d6a8288a48
commit
e85f0db128
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in New Issue