Hi
In def __text_units the following code is a correction to fix the INMTYPE handling. The commented elifs are the original ones. Obviously just a cut-n-paste issue.
if IBM_text_units[key]['name'] == 'INMTYPE':
value = self.__get_int(value)
if value == 0x80:
value = "Data Library"
elif value == 0x40:
value = "Program Library"
# elif value == 0x80:
elif value == 0x04:
value = "Extended PS"
# elif value == 0x80:
elif value == 0x01:
value = "Large Format PS"
else:
value = "None"
All the best
Marco
Hi
In
def __text_unitsthe following code is a correction to fix theINMTYPEhandling. The commentedelifs are the original ones. Obviously just a cut-n-paste issue.All the best
Marco