Skip to content
Snippets Groups Projects
Commit 68d2869c authored by Juuso "Linda" Lapinlampi's avatar Juuso "Linda" Lapinlampi Committed by Travis Ralston
Browse files

config: Remove a repeated word from a logger warning

The warning for missing macaroon_secret_key was "missing missing".
parent da95867d
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,7 @@ class KeyConfig(Config):
if not self.macaroon_secret_key:
# Unfortunately, there are people out there that don't have this
# set. Lets just be "nice" and derive one from their secret key.
logger.warn("Config is missing missing macaroon_secret_key")
logger.warn("Config is missing macaroon_secret_key")
seed = bytes(self.signing_key[0])
self.macaroon_secret_key = hashlib.sha256(seed).digest()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment