Fix missing format argument in exception message.
parent
4c1c578fbe
commit
9fe81ec773
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Reference in New Issue