Correct the spelling of property to last_modified (#65752)
Fixed the misspelt 'last_modified' field in azure_rm_storageblob output
This commit is contained in:
parent
356e3e30fa
commit
4a54873023
2 changed files with 4 additions and 2 deletions
|
@ -0,0 +1,2 @@
|
||||||
|
minor_changes:
|
||||||
|
- fixed the misspelt 'last_modified' field in azure_rm_storageblob output
|
|
@ -175,7 +175,7 @@ container:
|
||||||
returned: always
|
returned: always
|
||||||
type: dict
|
type: dict
|
||||||
sample: {
|
sample: {
|
||||||
"last_mdoified": "09-Mar-2016 19:28:26 +0000",
|
"last_modified": "09-Mar-2016 19:28:26 +0000",
|
||||||
"name": "foo",
|
"name": "foo",
|
||||||
"tags": {}
|
"tags": {}
|
||||||
}
|
}
|
||||||
|
@ -319,7 +319,7 @@ class AzureRMStorageBlob(AzureRMModuleBase):
|
||||||
result = dict(
|
result = dict(
|
||||||
name=container.name,
|
name=container.name,
|
||||||
tags=container.metadata,
|
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
|
return result
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue