diff --git a/hgext/remotenames.py b/hgext/remotenames.py --- a/hgext/remotenames.py +++ b/hgext/remotenames.py @@ -22,7 +22,12 @@ from __future__ import absolute_import -import collections +try: + from collections import abc + MutableMapping = abc.MutableMapping +except ImportError: + import collections + MutableMapping = collections.MutableMapping from mercurial.i18n import _ @@ -56,7 +61,7 @@ default=True, ) -class lazyremotenamedict(collections.MutableMapping): +class lazyremotenamedict(MutableMapping): """ Read-only dict-like Class to lazily resolve remotename entries