diff options
Diffstat (limited to 'git/config.py')
| -rw-r--r-- | git/config.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/git/config.py b/git/config.py index 3c6a32eb..eddfac15 100644 --- a/git/config.py +++ b/git/config.py @@ -40,7 +40,7 @@ log.addHandler(logging.NullHandler())  class MetaParserBuilder(abc.ABCMeta):      """Utlity class wrapping base-class methods into decorators that assure read-only properties""" -    def __new__(metacls, name, bases, clsdict): +    def __new__(cls, name, bases, clsdict):          """          Equip all base-class methods with a needs_values decorator, and all non-const methods          with a set_dirty_and_flush_changes decorator in addition to that.""" @@ -62,7 +62,7 @@ class MetaParserBuilder(abc.ABCMeta):              # END for each base          # END if mutating methods configuration is set -        new_type = super(MetaParserBuilder, metacls).__new__(metacls, name, bases, clsdict) +        new_type = super(MetaParserBuilder, cls).__new__(cls, name, bases, clsdict)          return new_type | 
