Comment 4 for bug 1321715

Revision history for this message
Sayaji Patil (sayaji15) wrote :

The image info is passed as a dictionary to the print func(), which then sorts the keys and prints
the key-values in a table format. In this case the key for image properties(Property) starts with upper case 'P'.
So after sorting the key "Property" is printed before other keys like "checksum", "container_format" etc.
Possible solution is to change the key name from "Property" to "property", so it will be listed along with other
properties starting with "p" like "protected".

Is this an acceptable solution ?