diff --git a/changelogs/fragments/65752-fix-azure_rm_storageblob-typo.yml b/changelogs/fragments/65752-fix-azure_rm_storageblob-typo.yml new file mode 100644 index 00000000000..dcc8103871f --- /dev/null +++ b/changelogs/fragments/65752-fix-azure_rm_storageblob-typo.yml @@ -0,0 +1,2 @@ +minor_changes: + - fixed the misspelt 'last_modified' field in azure_rm_storageblob output diff --git a/lib/ansible/modules/cloud/azure/azure_rm_storageblob.py b/lib/ansible/modules/cloud/azure/azure_rm_storageblob.py index c7f8f565dc5..0833640cf6a 100644 --- a/lib/ansible/modules/cloud/azure/azure_rm_storageblob.py +++ b/lib/ansible/modules/cloud/azure/azure_rm_storageblob.py @@ -175,7 +175,7 @@ container: returned: always type: dict sample: { - "last_mdoified": "09-Mar-2016 19:28:26 +0000", + "last_modified": "09-Mar-2016 19:28:26 +0000", "name": "foo", "tags": {} } @@ -319,7 +319,7 @@ class AzureRMStorageBlob(AzureRMModuleBase): result = dict( name=container.name, tags=container.metadata, - last_mdoified=container.properties.last_modified.strftime('%d-%b-%Y %H:%M:%S %z'), + last_modified=container.properties.last_modified.strftime('%d-%b-%Y %H:%M:%S %z'), ) return result