diff --git a/offlineimap/repository/Base.py b/offlineimap/repository/Base.py index a096a15..cbbc5f4 100644 --- a/offlineimap/repository/Base.py +++ b/offlineimap/repository/Base.py @@ -1,6 +1,5 @@ # Base repository support -# Copyright (C) 2002-2007 John Goerzen -# +# Copyright (C) 2002-2012 John Goerzen & contributors # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -24,7 +23,7 @@ from offlineimap import CustomConfig from offlineimap.ui import getglobalui from offlineimap.error import OfflineImapError -class BaseRepository(object, CustomConfig.ConfigHelperMixin): +class BaseRepository(CustomConfig.ConfigHelperMixin, object): def __init__(self, reposname, account): self.ui = getglobalui()