[doc/modules] small bugfix for display of images

This commit is contained in:
tobi-wan-kenobi 2020-05-03 16:57:22 +02:00
parent 577dd9b438
commit 2f98240eed
2 changed files with 44 additions and 44 deletions

View file

@ -95,7 +95,7 @@ class print_usage(argparse.Action):
doc = doc.replace("\n", "<br />")
if os.path.exists(os.path.join(basepath, 'screenshots', '{}.png'.format(m))):
doc = '{}<p />![{}](../screenshots/{}.png'.format(doc, m, m)
doc = '{}<p />![{}](../screenshots/{}.png)'.format(doc, m, m)
print("|{} |{} |".format(m, doc))
else: