From 0c731bf993eea346421d9dbcd5eaa61484e84018 Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Thu, 28 Apr 2011 22:15:37 -0400 Subject: [PATCH] fix bug in site_hrn() --- sfa/util/plxrn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sfa/util/plxrn.py b/sfa/util/plxrn.py index 7049df66..5580c444 100644 --- a/sfa/util/plxrn.py +++ b/sfa/util/plxrn.py @@ -23,7 +23,7 @@ class PlXrn (Xrn): @staticmethod def site_hrn (auth, login_base): - return '.'.join(auth,login_base) + return '.'.join([auth,login_base]) def __init__ (self, auth=None, hostname=None, slicename=None, email=None, **kwargs): #def hostname_to_hrn(auth_hrn, login_base, hostname): -- 2.43.0