mirror of https://github.com/scrapy/scrapy.git
Merge pull request #2596 from arvindch/patch-1
Use single quotes uniformly
This commit is contained in:
commit
9a5479cbf7
|
|
@ -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