Skip to content

Commit 82efe0a

Browse files
committed
Fix missing format placeholder in error
1 parent 97cdb2f commit 82efe0a

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 = "Invalid wolfSSL include dir: {}.".format(d)
336336
raise FileNotFoundError(e)
337337

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

0 commit comments

Comments
 (0)