Commit 11b798a0 authored by OzzieIsaacs's avatar OzzieIsaacs

Fix #571

parent 1e5cb29f
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
import smtplib
import threading
from datetime import datetime
......@@ -11,7 +12,6 @@ import sys
from email.generator import Generator
import web
from flask_babel import gettext as _
# from babel.dates import format_datetime
import re
try:
......@@ -44,9 +44,7 @@ class email(smtplib.SMTP):
def send(self, str):
"""Send `str' to the server."""
if self.debuglevel > 0:
# from __future__ import print_function
# print('send:', repr(str), file=sys.stderr)
pass
print('send:', repr(str), file=sys.stderr)
if hasattr(self, 'sock') and self.sock:
try:
if self.transferSize:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment