Eliminate unused body item (#283)

This commit is contained in:
Ross Scroggs
2016-10-12 15:44:30 -07:00
committed by Jay Lee
parent 6b0fb9e54d
commit cc1126ff2f

View File

@ -6222,7 +6222,7 @@ def doSignature(users):
else: else:
signature = getString(i, u'String', emptyOK=True).replace(u'\\n', u'<br/>').replace(u'\n', u'<br/>') signature = getString(i, u'String', emptyOK=True).replace(u'\\n', u'<br/>').replace(u'\n', u'<br/>')
i += 1 i += 1
body = {u'sendAsEmail': None} body = {}
while i < len(sys.argv): while i < len(sys.argv):
myarg = sys.argv[i].lower() myarg = sys.argv[i].lower()
i = getSendAsAttributes(i, myarg, body, tagReplacements, u'signature') i = getSendAsAttributes(i, myarg, body, tagReplacements, u'signature')