From f8c2a334f62af4552298bc1f1d8d7f45acafd50e Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Wed, 26 Jun 2013 13:01:39 +0200 Subject: [PATCH] bugfix --- PLC/Namespace.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PLC/Namespace.py b/PLC/Namespace.py index 2e785db..6c3565b 100644 --- a/PLC/Namespace.py +++ b/PLC/Namespace.py @@ -35,4 +35,4 @@ if hostname_to_hrn is None: if email_to_hrn is None: def email_to_hrn (auth_hrn, email): - return '.'.join([auth,email.split('@')[0].replace(".", "_").replace("+", "_")]) + return '.'.join([auth_hrn,email.split('@')[0].replace(".", "_").replace("+", "_")]) -- 2.43.0