Use dirname in object recursive import

__file__ just returns the init file which there was nothing
under.

TrivialFix

Change-Id: I39da8a50c0b9197b7a5cb3d5ca4fd95f8d739eaa
This commit is contained in:
Kevin Benton 2017-04-20 04:34:16 -07:00
parent 55be865d9a
commit c43a677e19
1 changed files with 3 additions and 1 deletions

View File

@ -10,10 +10,12 @@
# License for the specific language governing permissions and limitations
# under the License.
import os
import sys
def register_objects():
# local import to avoid circular import failure
from neutron.common import utils
utils.import_modules_recursively(sys.modules[__name__].__file__)
dirn = os.path.dirname(sys.modules[__name__].__file__)
utils.import_modules_recursively(dirn)