Comment 12 for bug 1291032

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

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

commit 1a116d24a955c9e45fa8a29998d09da0350be4ab
Author: Jakub Libosvar <email address hidden>
Date: Fri Apr 18 15:29:49 2014 +0200

    Fix H302 violations in plugins 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: I83372124f4fba7b94bbfb4a56a0c0ef779ee237f
    Partial-Bug: #1291032