Forgot to initialize TestBase._sender

This commit is contained in:
Stuart D. Gathman
2016-08-11 09:48:09 -04:00
parent ded1412294
commit 6e2153454a
+2
View File
@@ -20,6 +20,8 @@ class TestBase(object):
def __init__(self,logfile='test/milter.log'): def __init__(self,logfile='test/milter.log'):
self._protocol = 0 self._protocol = 0
self.logfp = open(logfile,"a") self.logfp = open(logfile,"a")
## The MAIL FROM for the current email being fed to the %milter
self._sender = None
## List of recipients deleted ## List of recipients deleted
self._delrcpt = [] self._delrcpt = []
## List of recipients added ## List of recipients added