summaryrefslogtreecommitdiff
path: root/lib/ansible/modules/storage/infinidat/infini_host.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ansible/modules/storage/infinidat/infini_host.py')
-rw-r--r--lib/ansible/modules/storage/infinidat/infini_host.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ansible/modules/storage/infinidat/infini_host.py b/lib/ansible/modules/storage/infinidat/infini_host.py
index 47633e3cd3..ac90a92803 100644
--- a/lib/ansible/modules/storage/infinidat/infini_host.py
+++ b/lib/ansible/modules/storage/infinidat/infini_host.py
@@ -1,7 +1,7 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
-# (c) 2016, Gregory Shulov (gregory.shulov@gmail.com)
+# Copyright: (c) 2016, Gregory Shulov (gregory.shulov@gmail.com)
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
from __future__ import absolute_import, division, print_function
@@ -144,7 +144,7 @@ def main():
try:
system.volumes.get(name=module.params['volume'])
except Exception:
- module.fail_json(msg='Volume {} not found'.format(module.params['volume']))
+ module.fail_json(msg='Volume {0} not found'.format(module.params['volume']))
if host and state == 'present':
update_host(module, host)