From 969b33887f9c612fcdca72743c4fa183099ff63e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Asbj=C3=B8rn=20Alexander=20Fellinghaug?= Date: Fri, 6 Oct 2023 14:47:17 +0200 Subject: [PATCH] Update README.md Missing quotation sign in python print function --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9426fa0..57fc483 100644 --- a/README.md +++ b/README.md @@ -196,7 +196,7 @@ COMMIT; import bcrypt salt = bcrypt.gensalt(rounds=10) hashed = bcrypt.hashpw(b"VeryVerySecretPa55w0rd", salt) -print(f"Password hash for MQTT client: {hashed}) +print(f"Password hash for MQTT client: {hashed}") ``` Go snippet: ```go