summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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: