use new style classes
This commit is contained in:
parent
a09658d6cf
commit
ed0e1989f8
1 changed files with 2 additions and 2 deletions
|
|
@ -50,7 +50,7 @@ class BrowserUnavailable(Exception):
|
|||
class BrowserRetry(Exception):
|
||||
pass
|
||||
|
||||
class NoHistory:
|
||||
class NoHistory(object):
|
||||
"""
|
||||
We don't want to fill memory with history
|
||||
"""
|
||||
|
|
@ -60,7 +60,7 @@ class NoHistory:
|
|||
def clear(self): pass
|
||||
def close(self): pass
|
||||
|
||||
class BasePage:
|
||||
class BasePage(object):
|
||||
"""
|
||||
Base page
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue