Comment 13 for bug 1268439

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

Reviewed: https://review.openstack.org/67382
Committed: https://git.openstack.org/cgit/openstack/neutron/commit/?id=42683e17842fca91e8b6aecde08b726a3b24cda8
Submitter: Jenkins
Branch: master

commit 42683e17842fca91e8b6aecde08b726a3b24cda8
Author: lizheming <email address hidden>
Date: Fri Jan 17 11:58:42 2014 +0800

    Fix bug:range() is not same in py3.x and py2.x

    in python3.x, there is no method named xrange(),
    it has replaced by range(),which is equal to xrange() in python2.x.
    so we must fix this issue.we use six module to fix this issue.

    Change-Id: I9cee3f0df2d8abbf6f66d7c5a3a0fed98df622e8
    Closes-Bug: #1268439