From 67f67fea02446e53ccc0de78a7f566d04a2a9607 Mon Sep 17 00:00:00 2001 From: James Kasten Date: Wed, 24 Jun 2015 14:53:28 -0700 Subject: [PATCH] Remove trailing whitespace --- letsencrypt/display/ops.py | 2 +- letsencrypt/tests/display/ops_test.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/letsencrypt/display/ops.py b/letsencrypt/display/ops.py index 48718f88c..1a1887b9a 100644 --- a/letsencrypt/display/ops.py +++ b/letsencrypt/display/ops.py @@ -216,7 +216,7 @@ def success_installation(domains): def _gen_ssl_lab_urls(domains): """Returns a list of urls. - + :param list domains: Each domain is a 'str' """ diff --git a/letsencrypt/tests/display/ops_test.py b/letsencrypt/tests/display/ops_test.py index 48a51bf27..25be6bebc 100644 --- a/letsencrypt/tests/display/ops_test.py +++ b/letsencrypt/tests/display/ops_test.py @@ -183,7 +183,7 @@ class ChooseAccountTest(unittest.TestCase): class GenSSLLabURLs(unittest.TestCase): - """Loose test of _gen_ssl_lab_urls. URL can change easily in the future""" + """Loose test of _gen_ssl_lab_urls. URL can change easily in the future.""" def setUp(self): zope.component.provideUtility(display_util.FileDisplay(sys.stdout)) @@ -325,7 +325,7 @@ class SuccessInstallationTest(unittest.TestCase): names = ["example.com", "abc.com"] self._call(names) - + self.assertEqual(mock_util().notification.call_count, 1) arg = mock_util().notification.call_args_list[0][0][0]