index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Dylan Taylor <dylan@dylanmtaylor.com> | 2021-05-15 17:50:28 -0400 |
---|---|---|
committer | Dylan Taylor <dylan@dylanmtaylor.com> | 2021-05-15 17:50:28 -0400 |
commit | 1796bbb91885d8a11837b0d50c4b2093e2314352 (patch) | |
tree | 2174e5f92b03d64b9ebfe7c99ea86a73e7bb5d96 /docs | |
parent | 0ac13c0958f597156e5e383587bad8a75ac9d870 (diff) |
-rw-r--r-- | docs/conf.py | 4 |
diff --git a/docs/conf.py b/docs/conf.py index 88a55e02..375ff434 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -8,8 +8,8 @@ sys.path.insert(0, os.path.abspath('..')) def process_docstring(app, what, name, obj, options, lines): spaces_pat = re.compile(r"( {8})") ll = [] - for l in lines: - ll.append(spaces_pat.sub(" ", l)) + for line in lines: + ll.append(spaces_pat.sub(" ", line)) lines[:] = ll |