This commit is contained in:
Stephen Paul Suarez 2014-05-27 19:19:49 +08:00
parent 6b84f7093f
commit bb0a56ad1d

View file

@ -361,7 +361,7 @@ class DockerManager:
# with bind mode
elif len(parts) == 3:
if parts[2] not in ['ro', 'rw']:
module.fail_json(msg='bind mode needs to either be "ro" or "rw"')
self.module.fail_json(msg='bind mode needs to either be "ro" or "rw"')
ro = parts[2] == 'ro'
self.volumes[parts[1]] = {}
self.binds[parts[0]] = {'bind': parts[1], 'ro': ro}