freemobile: Fix history when internationals calls option is not suscribed

fixes #1078
This commit is contained in:
Willy Villard 2013-04-01 12:00:50 +02:00 committed by Laurent Bachelier
commit f18b96ff5b

View file

@ -59,7 +59,8 @@ class DetailsPage(BasePage):
# International parsing
divint = div.xpath('div[@class="international hide"]')[0]
self.parse_div(divint, u"Appels émis : %s | Appels reçus : %s", num, True)
if divint.xpath('div[@class="detail"]'):
self.parse_div(divint, u"Appels émis : %s | Appels reçus : %s", num, True)
for divbill in self.document.xpath('//div[@class="facture"]'):
for trbill in divbill.xpath('table/tr'):