From d9f09b72dbda0d17e52b8feac4505eec4f532085 Mon Sep 17 00:00:00 2001 From: ianb Date: Tue, 25 Mar 2008 17:06:48 +0000 Subject: Fix a couple tests that had some fragility --- paste/exceptions/reporter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'paste/exceptions') 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) -- cgit v1.2.1