From a90013bc2df6129771bc0dd1f75ed18be2c89049 Mon Sep 17 00:00:00 2001 From: Liam Marshall Date: Sun, 25 Oct 2015 16:43:03 -0500 Subject: [PATCH] Make linter happy --- letsencrypt/plugins/manual_test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/letsencrypt/plugins/manual_test.py b/letsencrypt/plugins/manual_test.py index e04ff3594..a52129635 100644 --- a/letsencrypt/plugins/manual_test.py +++ b/letsencrypt/plugins/manual_test.py @@ -67,7 +67,8 @@ class AuthenticatorTest(unittest.TestCase): @mock.patch("letsencrypt.plugins.manual.Authenticator._notify_and_wait") def test_disagree_with_ip_logging(self, mock_notify, mock_interaction): mock_interaction().yesno.return_value = False - mock_notify.side_effect = errors.Error("Exception not raised, continued execution even after disagreeing with IP logging") + mock_notify.side_effect = errors.Error("Exception not raised, \ + continued execution even after disagreeing with IP logging") self.assertRaises(errors.PluginError, self.auth.perform, self.achalls)