From: Thierry Parmentelat Date: Wed, 26 Jun 2013 11:01:39 +0000 (+0200) Subject: bugfix X-Git-Tag: plcapi-5.2-4~3 X-Git-Url: http://git.onelab.eu/?p=plcapi.git;a=commitdiff_plain;h=f8c2a334f62af4552298bc1f1d8d7f45acafd50e bugfix --- 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("+", "_")])