From ad45a664a856b21083dcb5a2e31a3f89ea7823a2 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Wed, 24 Aug 2016 08:26:23 -0700 Subject: [PATCH] use "iff" iff it is common international shorthand --- certbot/plugins/util_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/certbot/plugins/util_test.py b/certbot/plugins/util_test.py index cb17cebe2..58dcfdd38 100644 --- a/certbot/plugins/util_test.py +++ b/certbot/plugins/util_test.py @@ -79,7 +79,7 @@ def psutil_available(): """Checks if psutil can be imported. :rtype: bool - :returns: True iff psutil is installed and can be imported + :returns: True if psutil can be imported, otherwise, False """ try: @@ -95,7 +95,7 @@ def skipUnless(condition, reason): This implements the basic functionality of unittest.skipUnless which is only available on Python 2.7+. - :param bool condition: skip the test iff condition is False + :param bool condition: If False, the test will be skipped :param str reason: the reason for skipping the test :rtype: function