Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Missing quotation sign in python print function
  • Loading branch information
asbjorn authored Oct 6, 2023
1 parent 59a0774 commit 969b338
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 969b338

Please sign in to comment.