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:05:55 -0800
commit2a9ddb1c70cab02af8341f674265384af250452b (patch)
tree49c4c2445253b1ccc771563eecf58b3ac52e0874
parentd3543ff67c788531cadfcaee19395bbb70125364 (diff)
downloadansible-modules-core-2a9ddb1c70cab02af8341f674265384af250452b.tar.gz
Clarify the comment
-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 19618df1..1a99fed8 100644
--- a/packaging/os/rhn_register.py
+++ b/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: