Comment 10 for bug 1291032

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

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

commit d1c0e73bc6247d4f4e7093eadb0df6186ae2546e
Author: Jakub Libosvar <email address hidden>
Date: Fri Apr 18 15:31:55 2014 +0200

    Fix H302 violations in extensions package

    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: I570eeee2a7633c1590b54ac98b411a71fc9d4f4e
    Partial-Bug: #1291032