Skip to content

Commit

Permalink
Update PR number
Browse files Browse the repository at this point in the history
Co-authored-by: Sean Rose <[email protected]>
  • Loading branch information
drstrangelooker and sean-rose authored Dec 4, 2024
1 parent 9710a30 commit 5f6b2e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion looker_deployer/commands/deploy_content.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5f6b2e5

Please sign in to comment.