|  | @@ -15,6 +15,7 @@ from lxml import html
 | 
	
		
			
				|  |  |  # engine dependent config
 | 
	
		
			
				|  |  |  categories = ['videos']
 | 
	
		
			
				|  |  |  paging = True
 | 
	
		
			
				|  |  | +language = ""
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  # search-url
 | 
	
		
			
				|  |  |  url = 'http://www.subtitleseeker.com/'
 | 
	
	
		
			
				|  | @@ -41,6 +42,10 @@ def response(resp):
 | 
	
		
			
				|  |  |      for result in dom.xpath(results_xpath):
 | 
	
		
			
				|  |  |          link = result.xpath(".//a")[0]
 | 
	
		
			
				|  |  |          href = link.attrib.get('href')
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        if language is not "":
 | 
	
		
			
				|  |  | +            href = href + language + "/"
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |          title = escape(link.xpath(".//text()")[0])
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |          content = result.xpath('.//div[contains(@class,"red")]//text()')[0]
 |