You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After upgrade to Python3 get the error TypeError: '>' not supported between instances of 'tuple' and 'int' when executing oracle_parameter.
Fixed it by changing the condition when checking the existence of parameter (check_parameter_exists) and remove "> 0"
if result: return True else: msg[0] = 'The parameter (%s) doesn\'t exist' % name return False
The text was updated successfully, but these errors were encountered:
After upgrade to Python3 get the error TypeError: '>' not supported between instances of 'tuple' and 'int' when executing oracle_parameter.
Fixed it by changing the condition when checking the existence of parameter (check_parameter_exists) and remove "> 0"
if result: return True else: msg[0] = 'The parameter (%s) doesn\'t exist' % name return False
The text was updated successfully, but these errors were encountered: