Fixes in usermodel, fixed errors in webmodel, fixes in lists documentation

This commit is contained in:
absurdo 2023-04-03 01:20:54 +02:00
parent 6c9d115579
commit db23fb230b
3 changed files with 8 additions and 8 deletions

View file

@ -609,8 +609,8 @@ class WebModel:
else:
return False
except:
self.query_error='Cannot insert the new row '+sys.exc_info()[0]
except Exception as e:
self.query_error='Cannot insert the new row '+str(e)
#print(sys.exc_info()[0])
return False