commit/galaxy-central: 2 new changesets
2 new commits in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/2438770e2cfb/ Changeset: 2438770e2cfb Branch: next-stable User: jmchilton Date: 2014-08-04 16:15:57 Summary: Python 2.6 compat fix for 591f036. Affected #: 1 file diff -r 4aa37815f1fba179ac45c0a67eaffc319905cf0e -r 2438770e2cfbf804acc0d5c7b2f3d6e491f30695 lib/galaxy/util/topsort.py --- a/lib/galaxy/util/topsort.py +++ b/lib/galaxy/util/topsort.py @@ -36,7 +36,7 @@ many methods to help analyze and break the cycles. This requires a good deal more code than topsort itself! """ -from collections import OrderedDict +from galaxy.util.odict import odict as OrderedDict from exceptions import Exception https://bitbucket.org/galaxy/galaxy-central/commits/cd82587fb36e/ Changeset: cd82587fb36e User: jmchilton Date: 2014-08-04 16:16:13 Summary: Merge next-stable. Affected #: 1 file diff -r 120b7b9c1c73e5577f874674e9773b17784c0d52 -r cd82587fb36ecbc802931edad29372f69cee7108 lib/galaxy/util/topsort.py --- a/lib/galaxy/util/topsort.py +++ b/lib/galaxy/util/topsort.py @@ -36,7 +36,7 @@ many methods to help analyze and break the cycles. This requires a good deal more code than topsort itself! """ -from collections import OrderedDict +from galaxy.util.odict import odict as OrderedDict from exceptions import Exception Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org