summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTomás Touceda <chiiph@leap.se>2013-12-18 09:39:45 -0300
committerTomás Touceda <chiiph@leap.se>2013-12-18 09:39:45 -0300
commitc9231939260daa2a6cc5028af206438ef237fb17 (patch)
tree6a8e936195c7ca586da512c4235aeb3618b6b71b /src
parent40cd9dc7aaa0298954be174fc3088bb9613845d3 (diff)
parent63d40a45f97ea663137fdecc55df12fd72ad5d5c (diff)
Merge remote-tracking branch 'refs/remotes/ivan/bug/4791_url-should-not-end-in-period' into develop
Diffstat (limited to 'src')
-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()