summaryrefslogtreecommitdiff
path: root/oslo_config/generator.py
diff options
context:
space:
mode:
authorDoug Hellmann <doug@doughellmann.com>2015-11-16 20:35:55 +0000
committerDoug Hellmann <doug@doughellmann.com>2015-11-16 20:35:55 +0000
commit508ad40dcc71c58ae6d85eb92ca2adbae7914903 (patch)
treee28afd3464939fda5aee829e3b8714ef02dc27d1 /oslo_config/generator.py
parentad739a4c0958601e2117ba90fe4d758d2950e5ba (diff)
downloadoslo-config-508ad40dcc71c58ae6d85eb92ca2adbae7914903.tar.gz
improve wording of comment in previous commit
The wording of the comment in the previous commit was confusing except in the context of the patch itself, where it was clear what dictionary was being referenced. Change-Id: I799ef003479d7a7c88f12a33fa95faed6691d943
Diffstat (limited to 'oslo_config/generator.py')
-rw-r--r--oslo_config/generator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/oslo_config/generator.py b/oslo_config/generator.py
index a09a831..92245bf 100644
--- a/oslo_config/generator.py
+++ b/oslo_config/generator.py
@@ -281,7 +281,7 @@ def generate(conf):
def _get_group_name(item):
group = item[0]
- # The key of that dictionary could be an OptGroup. Otherwise the
+ # The keys of the groups dictionary could be an OptGroup. Otherwise the
# help text of an OptGroup wouldn't be part of the generated sample
# file. It could also be just a plain group name without any further
# attributes. That's the reason why we have to distinct this here.