From 98f5ae2e8b7893fabf6bc0d77938761f464e28f4 Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Thu, 20 Aug 2009 17:23:16 +0000 Subject: [PATCH] fix bug --- sfa/plc/slices.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sfa/plc/slices.py b/sfa/plc/slices.py index 21cf41fb..98a24c6c 100644 --- a/sfa/plc/slices.py +++ b/sfa/plc/slices.py @@ -184,13 +184,13 @@ class Slices(SimpleStorage): # Get the slice's site record authority = get_authority(hrn) - site_records = registry.resolve(credential, get_authority(hrn)) + site_records = registry.resolve(credential, authority) site = {} for site_record in site_records: if site_record.get_type() in ['authority']: site = site_record.as_dict() if not site: - raise RecordNotFound(hrn) + raise RecordNotFound(authority) remote_site_id = site.pop('site_id') # Make sure slice exists at plc, if it doesnt add it -- 2.43.0