From 52698596bc21c74be710b2ab89d4e9b8f3278aab Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Thu, 17 Nov 2016 14:05:55 -0800 Subject: [PATCH] Clarify the comment --- lib/ansible/modules/packaging/os/rhn_register.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/packaging/os/rhn_register.py b/lib/ansible/modules/packaging/os/rhn_register.py index ac08fc21c5..77b1e63457 100644 --- a/lib/ansible/modules/packaging/os/rhn_register.py +++ b/lib/ansible/modules/packaging/os/rhn_register.py @@ -162,8 +162,8 @@ class Rhn(RegistrationBase): # well def get_option_default(self, key, default=''): # the class in rhn-client-tools that this comes from didn't - # implement __contains__(). That's why we check if the key is - # present in the dictionary that is the actual storage + # implement __contains__() until 2.5.x. That's why we check if + # the key is present in the dictionary that is the actual storage if key in self.dict: return self[key] else: