Skip to content

Commit

Permalink
Fix remaining relative import and enable Pylint check
Browse files Browse the repository at this point in the history
Relative imports are not supported in Python 3.

Part of the work for: https://fedorahosted.org/freeipa/ticket/4985

Reviewed-By: Martin Basti <[email protected]>
  • Loading branch information
encukou authored and MartinBasti committed May 10, 2016
1 parent 475547f commit a9a1353
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion ipaserver/install/custodiainstance.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from ipapython.secrets.client import CustodiaClient
from ipaplatform.paths import paths
from ipaplatform.constants import constants
from service import SimpleServiceInstance
from ipaserver.install.service import SimpleServiceInstance
from ipapython import ipautil
from ipapython.ipa_log_manager import root_logger
from ipaserver.install import installutils
Expand Down
1 change: 0 additions & 1 deletion pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ disable=
redefine-in-handler,
redefined-builtin,
redefined-outer-name,
relative-import,
super-init-not-called,
undefined-loop-variable,
unnecessary-lambda,
Expand Down

0 comments on commit a9a1353

Please sign in to comment.