summaryrefslogtreecommitdiffstats
path: root/docs/build_manpage.py
diff options
context:
space:
mode:
authorStephen Dolan <stephen.dolan@cl.cam.ac.uk>2023-05-28 17:06:31 +0100
committerStephen Dolan <stephen.dolan@cl.cam.ac.uk>2023-05-28 17:06:31 +0100
commit89caf46a5fb0a97274f034affbe5ec05297107b1 (patch)
treed6ec6034e405fa19fe088b783d0471f9651a4940 /docs/build_manpage.py
parenteb610c03232c76839c05520bdca442bfabf6e853 (diff)
Update URLs from stedolan to jqlang
Diffstat (limited to 'docs/build_manpage.py')
-rwxr-xr-xdocs/build_manpage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/build_manpage.py b/docs/build_manpage.py
index a0ab4edb..88ce4e9d 100755
--- a/docs/build_manpage.py
+++ b/docs/build_manpage.py
@@ -187,7 +187,7 @@ class RoffWalker(object):
def load_yml_file(fn):
with open(fn) as f:
- return yaml.load(f)
+ return yaml.load(f, Loader=yaml.Loader)
def dedent_body(body):
lines = [re.sub(r'^ (\S)', r'\1', l) for l in body.split('\n')]