Rename BaseBrowser to Browser

This commit is contained in:
Florent 2014-09-23 10:53:38 +02:00
commit 0088013ae1
132 changed files with 348 additions and 348 deletions

View file

@ -58,7 +58,7 @@ from weboob.tools.parsers import get_parser
__all__ = ['BrowserIncorrectPassword', 'BrowserForbidden', 'BrowserBanned', 'BrowserUnavailable', 'BrowserRetry',
'BrowserPasswordExpired', 'BrowserHTTPNotFound', 'BrowserHTTPError', 'BrokenPageError', 'Page',
'StandardBrowser', 'BaseBrowser']
'StandardBrowser', 'Browser']
class BrowserRetry(Exception):
@ -422,7 +422,7 @@ class StandardBrowser(mechanize.Browser):
class BaseBrowser(StandardBrowser):
class Browser(StandardBrowser):
"""
Base browser class to navigate on a website.