From aa8643ef7378764d9346407003868d83f202ba71 Mon Sep 17 00:00:00 2001 From: Patrick Uiterwijk Date: Oct 05 2018 09:57:25 +0000 Subject: Fix a single typo in the config option in keyhelper SSH_KEY != SSH_KEYS Signed-off-by: Patrick Uiterwijk --- diff --git a/files/keyhelper.py b/files/keyhelper.py index 2a018cb..60ec0a9 100644 --- a/files/keyhelper.py +++ b/files/keyhelper.py @@ -80,5 +80,6 @@ if not result["found"]: sys.exit(0) print( - "%s %s" % (pagure_config["SSH_KEY_OPTIONS"] % result, result["public_key"]) + "%s %s" + % (pagure_config["SSH_KEYS_OPTIONS"] % result, result["public_key"]) )