Validation 26/02/22 - 12h21

master
ChérifBALDE 2022-02-26 12:47:14 +01:00 committed by cherif
parent 3fe6ff7ee2
commit b0bfde9fa0
1 changed files with 2 additions and 1 deletions

View File

@ -579,7 +579,8 @@ def update_user_account(diction):
return False, "Impossible de mettre à jour le compte utilisateur"
except Exception as e:
mycommon.myprint(e)
exc_type, exc_obj, exc_tb = sys.exc_info()
mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno))
return False, "Impossible de mettre à jour le compte utilisateur"
'''