From 057e29d8a88f5e312814ad4a88f5a2bfdc449367 Mon Sep 17 00:00:00 2001 From: enkore Date: Sun, 12 Oct 2014 14:29:54 +0200 Subject: [PATCH] Update module_docs.py --- docs/module_docs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/module_docs.py b/docs/module_docs.py index e065400..e53a10a 100644 --- a/docs/module_docs.py +++ b/docs/module_docs.py @@ -110,6 +110,7 @@ def generate_automodules(path, basecls): contents.append("") for mod in modules: + contents.append(".. _{}:\n".format(mod[0].split(".")[-1])) contents.append(".. automodule:: {}".format(mod[0])) contents.append(" :members: {}\n".format(mod[1]))