Fix missing format argument in exception message.

pull/99/head
Robert de Vries 2026-04-09 20:26:42 +02:00
parent 4c1c578fbe
commit 9fe81ec773
1 changed files with 1 additions and 1 deletions

View File

@ -332,7 +332,7 @@ def get_features(local_wolfssl, features):
for d in include_dirs:
if not os.path.exists(d):
e = "Invalid wolfSSL include dir: .".format(d)
e = f"Invalid wolfSSL include dir: {d}"
raise FileNotFoundError(e)
options = os.path.join(d, "wolfssl", "options.h")