Comment 11 for bug 1291032

Revision history for this message
Openstack Gerrit (openstack-gerrit) wrote : Fix merged to neutron (master)

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

commit c2634fa580b9b5e1c55bb6dc7eb02f0de989d747
Author: Jakub Libosvar <email address hidden>
Date: Fri Apr 18 15:30:32 2014 +0200

    Fix H302 violations in unit tests

    H302 violation is reported by flake8 when importing separated objects from
    modules instead of importing the whole module.
    e.g. from package.module import function
           function()
    is changed to
           from package import module
           module.function()

    Change-Id: Ic6975f39c755ded54149a9c01fcdcfaf78c596fc
    Partial-Bug: #1291032