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:
parent
321081c3b4
commit
9896853d1f
1 changed files with 1 additions and 1 deletions
|
@ -429,7 +429,7 @@ class AzureRMStorageBlob(AzureRMModuleBase):
|
||||||
else:
|
else:
|
||||||
try:
|
try:
|
||||||
self.log('Attempting to makedirs {0}'.format(self.dest))
|
self.log('Attempting to makedirs {0}'.format(self.dest))
|
||||||
os.makddirs(self.dest)
|
os.makedirs(self.dest)
|
||||||
except IOError as exc:
|
except IOError as exc:
|
||||||
self.fail("Failed to create directory {0} - {1}".format(self.dest, str(exc)))
|
self.fail("Failed to create directory {0} - {1}".format(self.dest, str(exc)))
|
||||||
self.dest += self.blob
|
self.dest += self.blob
|
||||||
|
|
Loading…
Reference in a new issue