summaryrefslogtreecommitdiff
path: root/src/leap/mail/smtp/gateway.py
diff options
context:
space:
mode:
authorIvan Alejandro <ivanalejandro0@gmail.com>2013-12-17 16:26:14 -0300
committerIvan Alejandro <ivanalejandro0@gmail.com>2013-12-17 16:27:55 -0300
commit63d40a45f97ea663137fdecc55df12fd72ad5d5c (patch)
treef64b52cfb22ce733123626920a1fb5f0e4351d75 /src/leap/mail/smtp/gateway.py
parent0a431c1d86717ff796b4eea336d4574cd281b32c (diff)
Footer url shouldn't end in period.
[Closes #4791]
Diffstat (limited to 'src/leap/mail/smtp/gateway.py')
-rw-r--r--src/leap/mail/smtp/gateway.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/mail/smtp/gateway.py b/src/leap/mail/smtp/gateway.py
index a78bd55..a24115b 100644
--- a/src/leap/mail/smtp/gateway.py
+++ b/src/leap/mail/smtp/gateway.py
@@ -603,7 +603,7 @@ class EncryptedMessage(object):
from_address = validate_address(self._fromAddress.addrstr)
username, domain = from_address.split('@')
self.lines.append('--')
- self.lines.append('%s - https://%s/key/%s.' %
+ self.lines.append('%s - https://%s/key/%s' %
(self.FOOTER_STRING, domain, username))
self.lines.append('')
self._origmsg = self.parseMessage()