diff --git a/modules/ing/browser.py b/modules/ing/browser.py
index d4e29975..bdc91594 100644
--- a/modules/ing/browser.py
+++ b/modules/ing/browser.py
@@ -22,7 +22,7 @@ import hashlib
from weboob.tools.browser import BaseBrowser, BrowserIncorrectPassword
from weboob.capabilities.bank import Account, TransferError
from .pages import AccountsList, LoginPage, \
- AccountHistory, TransferPage, TransferConfirmPage, \
+ TransferPage, TransferConfirmPage, \
BillsPage, StopPage
@@ -37,8 +37,6 @@ class Ing(BaseBrowser):
ENCODING = "utf-8"
PAGES = {'.*pages/index.jsf.*': AccountsList,
'.*displayLogin.jsf.*': LoginPage,
- '.*accountDetail.jsf.*': AccountHistory,
- '.*displayTRHistorique.*': AccountHistory,
'.*transferManagement.jsf': TransferPage,
'.*onHoldTransferManagement.jsf': TransferPage,
'.*DisplayDoTransferCommand.*': TransferPage,
diff --git a/modules/ing/pages/__init__.py b/modules/ing/pages/__init__.py
index 64d9bd9d..54d63831 100644
--- a/modules/ing/pages/__init__.py
+++ b/modules/ing/pages/__init__.py
@@ -19,7 +19,6 @@
from .accounts_list import AccountsList
-from .account_history import AccountHistory
from .login import LoginPage, StopPage
from .transfer import TransferPage, TransferConfirmPage
from .bills import BillsPage
@@ -28,6 +27,6 @@ from .bills import BillsPage
class AccountPrelevement(AccountsList):
pass
-__all__ = ['AccountsList', 'AccountHistory', 'LoginPage',
+__all__ = ['AccountsList', 'LoginPage',
'AccountPrelevement', 'TransferPage', 'TransferConfirmPage',
'BillsPage', 'StopPage']
diff --git a/modules/ing/pages/account_history.py b/modules/ing/pages/account_history.py
deleted file mode 100644
index 897a4cb5..00000000
--- a/modules/ing/pages/account_history.py
+++ /dev/null
@@ -1,90 +0,0 @@
-# -*- coding: utf-8 -*-
-
-# Copyright(C) 2009-2011 Romain Bignon, Florent Fourcot
-#
-# This file is part of weboob.
-#
-# weboob is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Affero General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# weboob is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU Affero General Public License for more details.
-#
-# You should have received a copy of the GNU Affero General Public License
-# along with weboob. If not, see