summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToshio Kuratomi <a.badger@gmail.com>2016-11-17 14:05:55 -0800
committerToshio Kuratomi <a.badger@gmail.com>2016-11-17 14:06:38 -0800
commit81c3f0463dd0398d21b87332fcd05d56988ce360 (patch)
tree0aa9fbcfd982cbbe7040e87764beef870edfba13
parentf202c8184b8ed4a69a72eb2e623ddb27c8f33973 (diff)
downloadansible-modules-core-81c3f0463dd0398d21b87332fcd05d56988ce360.tar.gz
Clarify the comment
(cherry picked from commit 2a9ddb1c70cab02af8341f674265384af250452b)
-rw-r--r--packaging/os/rhn_register.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging/os/rhn_register.py b/packaging/os/rhn_register.py
index 2c7461a4..47c3fb7a 100644
--- a/packaging/os/rhn_register.py
+++ b/packaging/os/rhn_register.py
@@ -148,8 +148,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: