Subject: Fix use of super() to be python 2 compatible.
Feature or Bugfix
Bugfix
Purpose
There was a naked super() call which is an error on python 2. This change replaces it with the verbose super(<clsname>, self) call, which works on both python 2 and python 3.
Subject: Fix use of super() to be python 2 compatible.
Feature or Bugfix
Purpose
super()
call which is an error on python 2. This change replaces it with the verbosesuper(<clsname>, self)
call, which works on both python 2 and python 3.