Closed ghost closed 7 years ago
Hi,
thanks for the clue. We are aware of several scripts that currently break a python 3.x compliance. While preparing the software for the next publication(s) we def. have this on our list. ( I guess python 2.x support runs out on 2021).
Best,
Fabian
The has_key call is now replaced everywhere.
This script contains a condition like
if dict.has_key(key):
several times; the attributehas_key
has been removed in Python3.x - these calls need to be replaced with the common Python idiomif key in dict:
to make the script Python3 compliant.