Comment 5 for bug 1492270

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to horizon (master)

Reviewed: https://review.openstack.org/212399
Committed: https://git.openstack.org/cgit/openstack/horizon/commit/?id=4e8549ee9a21ea8a2f44c8607b0abaf1a63f66a3
Submitter: Jenkins
Branch: master

commit 4e8549ee9a21ea8a2f44c8607b0abaf1a63f66a3
Author: Masco Kaliyamoorthy <email address hidden>
Date: Thu Aug 13 13:31:32 2015 +0530

    Replace SortedDict with OrderedDict

    From django V1.9 django.utils.datastructures.SortedDict
    will be removed and it is deprecated in V1.7.

    The similar functionality is added in collections.OrderedDict
    from python 2.7.

    Horizon code also should avoid the SortedDict class and
    start using the OrderedDict class.

    This patch replacing the SortedDict with OrderedDict.

    Change-Id: I8dfcf7c29fc49b6215451f160cf7a951bf11b5ad
    Closes-Bug: #1492270