ConfigHelperMixin should inherit from object

In 88e8a489 the object parent for BaseRepository is removed. This breaks
any use of super() for any Repository class. It breaks gmail.

Signed-off-by: Abdo Roig-Maranges <abdo.roig@gmail.com>
This commit is contained in:
Abdo Roig-Maranges 2016-08-01 16:04:30 +02:00
parent e460228bfc
commit 894efd4d0f
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ def CustomConfigDefault():
class ConfigHelperMixin:
class ConfigHelperMixin(object):
"""Allow comfortable retrieving of config values pertaining
to a section.