Skip to content

Commit 6fbdf3d

Browse files
authored
Merge pull request #99 from roberthdevries/fix-missing-format-argument
Fix missing format argument in exception message.
2 parents ca83d63 + 9fe81ec commit 6fbdf3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/build_ffi.py

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

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

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

0 commit comments

Comments
 (0)