Merge pull request #2596 from arvindch/patch-1

Use single quotes uniformly
This commit is contained in:
Konstantin Lopuhin 2017-02-26 14:15:05 +04:00 committed by GitHub
commit 9a5479cbf7
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):