one_image/one_image_info: Fix class typo (#9056)

* Fix one_image class method args

* Add CHANGELOG fragment

* PR fix

* PR fixes
This commit is contained in:
alexander 2024-10-28 23:11:39 +03:00 committed by GitHub
parent 3506f73da1
commit 67d1b6c413
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 10 additions and 7 deletions

View file

@ -307,7 +307,7 @@ class ImageInfoModule(OpenNebulaModule):
images = self.get_all_images().IMAGE
self.result = {
'images': [OpenNebulaModule.get_image_info(image) for image in images]
'images': [self.get_image_info(image) for image in images]
}
self.exit()