Move exceptions to weboob.core.exceptions
This commit is contained in:
parent
a019819f9d
commit
9949bbf919
35 changed files with 34 additions and 34 deletions
|
|
@ -18,7 +18,7 @@
|
|||
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
from requests.exceptions import HTTPError
|
||||
from weboob.tools.exceptions import BrowserHTTPError, BrowserHTTPNotFound
|
||||
from weboob.core.exceptions import BrowserHTTPError, BrowserHTTPNotFound
|
||||
|
||||
|
||||
class HTTPNotFound(HTTPError, BrowserHTTPNotFound):
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ import re
|
|||
from ast import literal_eval
|
||||
|
||||
from weboob.browser2.filters.standard import Filter, Regexp, RegexpError
|
||||
from weboob.tools.exceptions import ParseError
|
||||
from weboob.core.exceptions import ParseError
|
||||
|
||||
|
||||
__all__ = ['JSPayload', 'JSVar']
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ from dateutil.parser import parse as parse_date
|
|||
|
||||
from weboob.capabilities.base import empty
|
||||
from weboob.tools.compat import basestring
|
||||
from weboob.tools.exceptions import ParseError
|
||||
from weboob.core.exceptions import ParseError
|
||||
from weboob.browser2 import URL
|
||||
from weboob.tools.log import getLogger
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue