Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Aug 5, 2024
1 parent e6aa00a commit 53f0ef9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dcor_control/inspect/config_ckan.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def get_expected_site_options(dcor_site_config_dir):
if pp.exists():
template_paths.append(str(pp))
if template_paths:
cfg["ckan.ini"]["extra_template_paths"] = ",".join(template_paths)
cfg["ckan.ini"]["extra_template_paths"] = ", ".join(template_paths)

# Branding: Set extra public paths
public_paths = []
Expand All @@ -241,7 +241,7 @@ def get_expected_site_options(dcor_site_config_dir):
if pp.exists():
public_paths.append(str(pp))
if public_paths:
cfg["ckan.ini"]["extra_public_paths"] = ",".join(public_paths)
cfg["ckan.ini"]["extra_public_paths"] = ", ".join(public_paths)

# Fill in template variables
update_expected_ckan_options_templates(cfg)
Expand Down

0 comments on commit 53f0ef9

Please sign in to comment.