diff options
Diffstat (limited to 'release')
-rwxr-xr-x | release/update-manpages | 1 | ||||
-rw-r--r-- | release/update_manpages.py | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/release/update-manpages b/release/update-manpages index 0402ad66..6679b179 100755 --- a/release/update-manpages +++ b/release/update-manpages | |||
@@ -22,4 +22,5 @@ import sys | |||
22 | 22 | ||
23 | import update_manpages | 23 | import update_manpages |
24 | 24 | ||
25 | |||
25 | sys.exit(update_manpages.main(sys.argv[1:])) | 26 | sys.exit(update_manpages.main(sys.argv[1:])) |
diff --git a/release/update_manpages.py b/release/update_manpages.py index cb687245..489de357 100644 --- a/release/update_manpages.py +++ b/release/update_manpages.py | |||
@@ -17,17 +17,18 @@ | |||
17 | Most code lives in this module so it can be unittested. | 17 | Most code lives in this module so it can be unittested. |
18 | """ | 18 | """ |
19 | 19 | ||
20 | from pathlib import Path | ||
21 | import argparse | 20 | import argparse |
22 | import functools | 21 | import functools |
23 | import multiprocessing | 22 | import multiprocessing |
24 | import os | 23 | import os |
24 | from pathlib import Path | ||
25 | import re | 25 | import re |
26 | import shutil | 26 | import shutil |
27 | import subprocess | 27 | import subprocess |
28 | import sys | 28 | import sys |
29 | import tempfile | 29 | import tempfile |
30 | 30 | ||
31 | |||
31 | TOPDIR = Path(__file__).resolve().parent.parent | 32 | TOPDIR = Path(__file__).resolve().parent.parent |
32 | MANDIR = TOPDIR.joinpath("man") | 33 | MANDIR = TOPDIR.joinpath("man") |
33 | 34 | ||