Skip to content

Commit 1fe1cd9

Browse files
authored
Update setupext.py
flask8 line too long
1 parent 23ef7c2 commit 1fe1cd9

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

setupext.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -627,11 +627,14 @@ def do_custom_build(self, env):
627627
},
628628
**env,
629629
}
630-
configure_ac = os.path.join(src_path, "builds", "unix", "configure.ac")
630+
configure_ac = os.path.join(
631+
src_path, "builds", "unix", "configure.ac")
631632
if os.path.exists(os.path.join(src_path, "autogen.sh")) \
632633
and not os.path.exists(configure_ac):
633-
print(f"{configure_ac} does not exist. Using sh autogen.sh to generate.")
634-
subprocess.check_call(["sh", "./autogen.sh"], env=env, cwd=src_path)
634+
print(f"{configure_ac} does not exist. "
635+
f"Using sh autogen.sh to generate.")
636+
subprocess.check_call(
637+
["sh", "./autogen.sh"], env=env, cwd=src_path)
635638
env["CFLAGS"] = env.get("CFLAGS", "") + " -fPIC"
636639
configure = [
637640
"./configure", "--with-zlib=no", "--with-bzip2=no",

0 commit comments

Comments
 (0)