Comment 13 for bug 1291032

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

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

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

    Fix H302 violations

    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: Ifbf31b52316d3cade40743752a49ce700f384a21
    Closes-Bug: #1291032