mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 08:51:50 -06:00
b5bdd07bc5
Add absolute_import from __future__ so that pylint does not fail and to achieve python3 behavior in python2. Reviewed-By: Christian Heimes <cheimes@redhat.com> Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
11 lines
275 B
Python
11 lines
275 B
Python
#
|
|
# Copyright (C) 2017 FreeIPA Contributors see COPYING for license
|
|
#
|
|
"""IpaMetaImporter replaces this module with ipaplatform.$NAME.paths.
|
|
"""
|
|
from __future__ import absolute_import
|
|
|
|
import ipaplatform._importhook
|
|
|
|
ipaplatform._importhook.fixup_module('ipaplatform.paths')
|