Avoid rebind of exception reference

master
Mark Qvist 2026-08-27 18:32:41 +02:00
parent 803b548951
commit ff3a72209e
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ class Identity:
except Exception as e:
RNS.log(f"Error while serializing and writing known destinations: {e}", RNS.LOG_ERROR)
try: os.unlink(temp_file)
except Exception as e: RNS.log(f"Could not clean up temporary file {temp_file}: {e}", RNS.LOG_WARNING)
except Exception as exc: RNS.log(f"Could not clean up temporary file {temp_file}: {exc}", RNS.LOG_WARNING)
raise e
RNS.log(f"Saved known destinations to storage in {RNS.prettyshorttime(time.time()-save_start)}", RNS.LOG_DEBUG) if RNS.sl(RNS.LOG_DEBUG) else None