Skip to content
Commit ca365d5c authored by ntome's avatar ntome 💬 Committed by Romain Bignon
Browse files

python3: fix AbstractBrowser/AbstractModule/AbstractPage

object.__new__ only takes one argument: the class to construct.
It accepts more arguments only if __init__ is not overloaded, but it
is overloaded in Abstract*'s parent classes, so don't pass more args.

In Python 2, it was just deprecated, in Python 3, it doesn't work.
parent 26e5209d
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment