fix parsing of cards with undefined payment date
This commit is contained in:
parent
0d59cfcc8c
commit
dd33dbc418
1 changed files with 3 additions and 2 deletions
|
|
@ -17,6 +17,7 @@
|
||||||
# You should have received a copy of the GNU Affero General Public License
|
# You should have received a copy of the GNU Affero General Public License
|
||||||
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
|
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
import urllib
|
||||||
from logging import error
|
from logging import error
|
||||||
import re
|
import re
|
||||||
from decimal import Decimal
|
from decimal import Decimal
|
||||||
|
|
@ -150,13 +151,13 @@ class CardsPage(SGPEPage):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
link = tds[self.COL_ID].xpath('.//a')[0]
|
link = tds[self.COL_ID].xpath('.//a')[0]
|
||||||
m = re.match(r"changeCarte\('(\d+)','(\d+)','([\d/]+)'\);.*", link.attrib['onclick'])
|
m = re.match(r"changeCarte\('(\d+)','(\d+)','([^']+)'\);.*", link.attrib['onclick'])
|
||||||
if not m:
|
if not m:
|
||||||
self.logger.error('Unable to parse link %r' % link.attrib['onclick'])
|
self.logger.error('Unable to parse link %r' % link.attrib['onclick'])
|
||||||
continue
|
continue
|
||||||
account.id = m.group(2)
|
account.id = m.group(2)
|
||||||
account._link_num = m.group(1) #useless
|
account._link_num = m.group(1) #useless
|
||||||
account._link_date = m.group(3)
|
account._link_date = urllib.quote(m.group(3))
|
||||||
account._link_rib = rib
|
account._link_rib = rib
|
||||||
account._link_currency = currency
|
account._link_currency = currency
|
||||||
account._is_card = True
|
account._is_card = True
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue