Changes of Revision 13
[-] [+] | Added | exabgp-3.4.20_OrderedDict.patch |
@@ -0,0 +1,14 @@ +--- lib/exabgp/rib/store.py.orig 2017-07-03 15:02:09.121701764 +0200 ++++ lib/exabgp/rib/store.py 2017-07-03 15:02:20.585700702 +0200 +@@ -6,7 +6,10 @@ + Copyright (c) 2009-2015 Exa Networks. All rights reserved. + """ + +-from collections import OrderedDict ++try: ++ from collections import OrderedDict ++except ImportError: ++ from ordereddict import OrderedDict + + from exabgp.bgp.message import IN + from exabgp.bgp.message import OUT |