Skip to content
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.

Commit

Permalink
Merge pull request #6 from levonet/patch-1
Browse files Browse the repository at this point in the history
Fix custom profiles generating
  • Loading branch information
AlexeySetevoi authored Jan 15, 2018
2 parents bc78436 + 7becab2 commit f1143a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/users.j2
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<!-- Custom profiles. -->
{% for dict_item in clickhouse_profiles_custom %}
<{{ dict_item }}>
{% for item in clickhouse_profiles_default[dict_item] %}
<{{ item }}>{{ clickhouse_profiles_default[dict_item][item] }}</{{ item }}>
{% for item in clickhouse_profiles_custom[dict_item] %}
<{{ item }}>{{ clickhouse_profiles_custom[dict_item][item] }}</{{ item }}>
{% endfor %}
</{{ dict_item }}>
{% endfor %}
Expand Down

0 comments on commit f1143a7

Please sign in to comment.