diff --git a/main.py b/main.py index eb3273a..f5767f1 100644 --- a/main.py +++ b/main.py @@ -21,6 +21,7 @@ if "--move-sent" in sys.argv: logWrite(f"File '{entry}' is already moved or does not exist") except Exception as exp: logWrite(f"Could not move sent file '{entry}' to '{configGet('sent', 'locations')}' due to {exp}") + logWrite(f"Moved all sent files to the sent folder") if "--cleanup" in sys.argv: if "--confirm" in sys.argv: @@ -36,6 +37,7 @@ if "--cleanup" in sys.argv: pass except Exception as exp: logWrite(f"Could not remove '{entry}' due to {exp}") + logWrite(f"Performed cleanup of the sent files") else: logWrite(f"Requested cleanup of sent files but not authorized. Please pass '--confirm' to perform that")