summaryrefslogtreecommitdiff
path: root/paste/exceptions
diff options
context:
space:
mode:
authorianb <devnull@localhost>2008-03-25 17:06:48 +0000
committerianb <devnull@localhost>2008-03-25 17:06:48 +0000
commitd9f09b72dbda0d17e52b8feac4505eec4f532085 (patch)
tree4638a5d99df01ed528f0af5ac6e45c68292c0fea /paste/exceptions
parent3a8f11b1574cedb9e9f13f25cc377656ea0ff39b (diff)
downloadpaste-d9f09b72dbda0d17e52b8feac4505eec4f532085.tar.gz
Fix a couple tests that had some fragility
Diffstat (limited to 'paste/exceptions')
-rw-r--r--paste/exceptions/reporter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paste/exceptions/reporter.py b/paste/exceptions/reporter.py
index 4f020c7..d4caf74 100644
--- a/paste/exceptions/reporter.py
+++ b/paste/exceptions/reporter.py
@@ -93,7 +93,7 @@ class EmailReporter(Reporter):
msg.attach(html_msg)
msg.attach(html_long)
subject = '%s: %s' % (exc_data.exception_type,
- formatter.truncate(str(exc_data.exception_value)))
+ formatter.truncate(str(exc_data.exception_value)))
msg['Subject'] = self.subject_prefix + subject
msg['From'] = self.from_address
msg['To'] = ', '.join(self.to_addresses)