Skip to content

Commit

Permalink
build-aux/sodepends.py: Fix flake8 error.
Browse files Browse the repository at this point in the history
Fixes: f418dce ("build-aux/sodepends.py: Fix broken build when manpage changes.")
Signed-off-by: Han Zhou <hzhou@ovn.org>
(cherry picked from commit 52da241)
  • Loading branch information
hzhou8 committed Jan 12, 2023
1 parent a3388a2 commit f6f8c8d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build-aux/sodepends.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ def sodepends(include_info, filenames, dst):
continue

# Open file.
include_dirs = [info[1] if len(info) == 2 else info[0] for info in include_info]
include_dirs = [info[1] if len(info) == 2 else info[0]
for info in include_info]
fn = soutil.find_file(include_dirs, toplevel)
if not fn:
ok = False
Expand Down

0 comments on commit f6f8c8d

Please sign in to comment.