1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix typo of makedirs

This commit is contained in:
Joren Vrancken 2018-07-31 17:44:52 +02:00 committed by Brian Coca
parent 321081c3b4
commit 9896853d1f

View file

@ -429,7 +429,7 @@ class AzureRMStorageBlob(AzureRMModuleBase):
else:
try:
self.log('Attempting to makedirs {0}'.format(self.dest))
os.makddirs(self.dest)
os.makedirs(self.dest)
except IOError as exc:
self.fail("Failed to create directory {0} - {1}".format(self.dest, str(exc)))
self.dest += self.blob