move python lib import after absolute_import

This commit is contained in:
Hengyang Hu 2016-08-19 19:59:36 -07:00
parent 69a2427670
commit 7355eb4ecd

View file

@ -25,12 +25,12 @@ Ensure a Linux ACL does not exist
- perms: rwx
'''
# Import python libs
import os
# Import Python libs
from __future__ import absolute_import
# Import python libs
import os
# Import salt libs
import salt.utils