summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToshio Kuratomi <a.badger@gmail.com>2016-09-27 07:27:02 -0700
committerToshio Kuratomi <a.badger@gmail.com>2016-09-27 07:27:27 -0700
commita965d84f8d468531aa0c4e785ae0a3586a3d3e2d (patch)
tree0c0c0b33565aa2890ae5bd91838a6c28d9c4c711
parent528f075b50fdfa4009bf2f1a5461a89cb68aabda (diff)
downloadansible-modules-core-a965d84f8d468531aa0c4e785ae0a3586a3d3e2d.tar.gz
We don't have pycompat24 in 2.1 either
-rw-r--r--system/mount.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/system/mount.py b/system/mount.py
index 59b30175..7076d9fa 100644
--- a/system/mount.py
+++ b/system/mount.py
@@ -21,14 +21,6 @@
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
-from ansible.module_utils.basic import AnsibleModule
-from ansible.module_utils.basic import get_platform
-from ansible.module_utils.ismount import ismount
-from ansible.module_utils.pycompat24 import get_exception
-import os
-import re
-
-
DOCUMENTATION = '''
---
module: mount
@@ -119,6 +111,14 @@ EXAMPLES = '''
state: present
'''
+import os
+import re
+
+from ansible.module_utils.basic import AnsibleModule
+from ansible.module_utils.basic import get_exception
+from ansible.module_utils.basic import get_platform
+from ansible.module_utils.ismount import ismount
+
def write_fstab(lines, dest):
fs_w = open(dest, 'w')