Skip to content

Commit

Permalink
fixed call nvl()
Browse files Browse the repository at this point in the history
  • Loading branch information
drfho committed Sep 9, 2024
1 parent 19d7b37 commit ea8efe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Products/zms/_objattrs.py
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ def getObjProperty(self, key, REQUEST={}, par=None):

# Special attributes.
if key not in obj_attrs.keys():
value = self.nvl(self.evalMetaobjAttr(key), '')
value = standard.nvl(self.evalMetaobjAttr(key), '')
if not isinstance(value, _blobfields.MyBlob) and (isinstance(value, Image) or isinstance(value, File)):
value = _blobfields.MyBlobWrapper(value)

Expand Down

0 comments on commit ea8efe0

Please sign in to comment.