soerp icon indicating copy to clipboard operation
soerp copied to clipboard

Python 3 Compatibility

Open hornekyle opened this issue 6 years ago • 0 comments

When trying to use error_components there are some dictionary errors. These result from Python 3 removing the 'has_key' method of dictionary objects. They can be corrected by replacing 'dictionary.has_key(key)' with 'key in dictionary'.

hornekyle avatar Sep 27 '17 16:09 hornekyle