diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-06 15:34:47 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-06 15:34:47 +0530 |
commit | ad92a42e8439337cfde346fa84e75a5f91164eac (patch) | |
tree | e6bf73ed61b0a6fc84fb43830e90fdb2826ccfcf | |
parent | cee1ef929d8f76e69ac626b93401e8648d2b8bed (diff) |
remove unnecessary print statement
-rw-r--r-- | app/misc_func.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/misc_func.py b/app/misc_func.py index 73e920d..5c410f4 100644 --- a/app/misc_func.py +++ b/app/misc_func.py @@ -23,5 +23,4 @@ def send(to, subject, body, body_html,thread=True): def send_async(app, message): with app.app_context(): - message.send() - print("Mail Sent")
\ No newline at end of file + message.send()
\ No newline at end of file |