parse color and sound better

This commit is contained in:
j 2013-02-25 19:23:44 +05:30
parent 2d65dcd16a
commit 8b3230df05

View file

@ -216,13 +216,19 @@ class Imdb(SiteParser):
},
'color': {
'page': 'combined',
're': '<h5>Color:</h5><div class="info-content"><a.*?>(.*?)</a>',
'type': 'string'
're': [
'<h5>Color:</h5><div class="info-content">(.*?)</div>',
'<a.*?>(.*?)</a>'
],
'type': 'list'
},
'sound': {
'page': 'combined',
're': '<h5>Sound Mix:</h5><div class="info-content"><a.*?>(.*?)</a>',
'type': 'string'
're': [
'<h5>Sound Mix:</h5><div class="info-content">(.*?)</div>',
'<a.*?>(.*?)</a>'
],
'type': 'list'
},
'season': {
'page': 'combined',