Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-09-06 15:54:52 +0200
committerGitHub <noreply@github.com>2021-09-06 15:54:52 +0200
commit1030bd19c58d6587c8c49eb015c78e488a49425e (patch)
tree9c6915a162048a52a66fa661b2d9d4a44c6db323 /docs
parenta5a56728f155f689bed5826bbd30532a56450cf3 (diff)
parent40cd8011847e21f5116c49aaff0336a89988eb92 (diff)
Merge branch 'master' into native_cpu_detection
Diffstat (limited to 'docs')
-rw-r--r--docs/conf.py4
1 files changed, 1 insertions, 3 deletions
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