index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds@gmail.com> | 2021-09-06 14:40:05 +0000 |
---|---|---|
committer | Anton Hvornum <anton.feeds@gmail.com> | 2021-09-06 14:40:05 +0000 |
commit | 51565314b480e75f00354b73e2420d5cda883fa0 (patch) | |
tree | 5a970f570bc0431605af338298db615661d6b35a /docs | |
parent | 8a0a9b16e1fa6977e38eacd78eeb26cb54477b20 (diff) | |
parent | 81f3ccad40594fa9e8b4b71d4fae48fe459b6e59 (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 |