From 07fc16415f6c9f1a8e9668f1dd442109bfe9cd15 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Fri, 24 Feb 2012 11:34:22 +0100 Subject: [PATCH] fixed error format --- PLC/Auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PLC/Auth.py b/PLC/Auth.py index c370da9..3be444b 100644 --- a/PLC/Auth.py +++ b/PLC/Auth.py @@ -86,7 +86,7 @@ class GPGAuth(Auth): gpg_keys = [ key['key'] for key in keys ] if not gpg_keys: - raise PLCAuthenticationFailure, "GPGAuth: No GPG key on record for peer or user '%s'" + raise PLCAuthenticationFailure, "GPGAuth: No GPG key on record for peer or user '%s'"%auth['name'] for gpg_key in gpg_keys: try: -- 2.43.0