| branch | devel |
| changeset 282 | 50cc13814bfb |
| parent 275 | 88d45c846f2b |
| child 294 | 0e75bd39767d |
--- a/iro/offer/provider.py Wed Apr 25 17:15:15 2012 +0200 +++ b/iro/offer/provider.py Fri Jul 06 12:22:15 2012 +0200 @@ -1,5 +1,8 @@ from functools import partial -from collections import OrderedDict +try: + from collections import OrderedDict +except ImportError: + from ordereddict import OrderedDict from ..error import NoRoute, NoTyp, ValidateException, NoProvider from ..config import Option, Config