diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-07-03 02:26:32 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-07-18 16:04:44 +0200 |
commit | 1c6c3ef0bfca3be3cd467adba52f5a235b3ab163 (patch) | |
tree | 53c01aeb69c55bdfa5e18ed226eac64991584e5d /tools/make-man-rules.py | |
parent | build-sys: drop support for generation of Makefile-man.am (diff) | |
download | systemd-1c6c3ef0bfca3be3cd467adba52f5a235b3ab163.tar.xz systemd-1c6c3ef0bfca3be3cd467adba52f5a235b3ab163.zip |
python: remove star imports
Star imports are discouraged and break pyflakes.
I'm happy to report that pyflakes finds no issues ;)
Diffstat (limited to 'tools/make-man-rules.py')
-rwxr-xr-x | tools/make-man-rules.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/make-man-rules.py b/tools/make-man-rules.py index da94d3eabe..e0f18d6fbe 100755 --- a/tools/make-man-rules.py +++ b/tools/make-man-rules.py @@ -23,7 +23,7 @@ import collections import sys import os.path import pprint -from xml_helper import * +from xml_helper import xml_parse def man(page, number): return '{}.{}'.format(page, number) |