Add configuration override detail in options

This commit is contained in:
lash 2022-02-23 12:08:46 +00:00
parent 49a4e4b4b8
commit 9419fbb77b
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
2 changed files with 5 additions and 2 deletions

View File

@ -96,7 +96,11 @@ class DocGenerator:
ks = list(self.docs.keys())
ks.sort()
for k in ks:
s += str(self.docs[k]) + "\n"
s += str(self.docs[k])
env = self.envs.get(k)
if env != None:
s += ' Overrides the \\fI' + env + '\\fP configuration setting.'
s += "\n"
return s

View File

@ -60,7 +60,6 @@ The source code of the tool this documentation describes is licensed under the G
.SH COPYRIGHT
.P
Louis Holbrook <dev@holbrook.no> (https://holbrook.no)
PGP: 59A844A484AC11253D3A3E9DCDCBD24DD1D0E001