Skip to content

Commit 9fe81ec

Browse files
Fix missing format argument in exception message.
1 parent 4c1c578 commit 9fe81ec

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/build_ffi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ def get_features(local_wolfssl, features):
332332

333333
for d in include_dirs:
334334
if not os.path.exists(d):
335-
e = "Invalid wolfSSL include dir: .".format(d)
335+
e = f"Invalid wolfSSL include dir: {d}"
336336
raise FileNotFoundError(e)
337337

338338
options = os.path.join(d, "wolfssl", "options.h")

0 commit comments

Comments
 (0)