index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | monosans <hsyqixco@protonmail.com> | 2021-07-16 10:42:29 +0300 |
---|---|---|
committer | monosans <hsyqixco@protonmail.com> | 2021-07-16 10:42:29 +0300 |
commit | 3d4f58a04e06ef4bdd023effc52d4cb33b49080c (patch) | |
tree | f57bda983c38061cd363252a845cf2ead046518b /docs | |
parent | 3a4076419418dcdac538c543903cfc6e16bde35f (diff) |
-rw-r--r-- | docs/conf.py | 4 |
diff --git a/docs/conf.py b/docs/conf.py index add1c5e7..33aeeae8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -7,9 +7,7 @@ sys.path.insert(0, os.path.abspath('..')) def process_docstring(app, what, name, obj, options, lines): spaces_pat = re.compile(r"( {8})") - ll = [] - for line in lines: - ll.append(spaces_pat.sub(" ", line)) + ll = [spaces_pat.sub(" ", line) for line in lines] lines[:] = ll |