From 5f6b2e5e66397180ea700d97060cde986000bf5b Mon Sep 17 00:00:00 2001 From: "Dr. Strangelove" Date: Wed, 4 Dec 2024 13:27:01 -0500 Subject: [PATCH] Update PR number Co-authored-by: Sean Rose <1994030+sean-rose@users.noreply.github.com> --- looker_deployer/commands/deploy_content.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/looker_deployer/commands/deploy_content.py b/looker_deployer/commands/deploy_content.py index 75ba44d..593b6e3 100644 --- a/looker_deployer/commands/deploy_content.py +++ b/looker_deployer/commands/deploy_content.py @@ -52,7 +52,7 @@ def create_or_return_space(space_name, parent_id, sdk): target_id = get_space_ids_from_name(space_name, parent_id, sdk) if len(target_id) == 0 and "/" in space_name: # If the folder name contains slashes then also check if it was previously imported with - # the slashes replaced with division slashes (Unicode character 2215) prior to PR #152. + # the slashes replaced with division slashes (Unicode character 2215) prior to PR #153. target_id = get_space_ids_from_name(space_name.replace("/", "\u2215"), parent_id, sdk) logger.debug("Space ID from name", extra={"id": target_id}) assert len(target_id) == 1