Skip to content

Commit

Permalink
Merge pull request #3296 from camptocamp/missing-unicode-marker
Browse files Browse the repository at this point in the history
Added a missing unicode decorator to a formated string.
  • Loading branch information
ochriste committed Nov 30, 2017
2 parents e00f281 + aa55066 commit 9d9442e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion c2cgeoportal/views/entry.py
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ def _group(
if type(group) == Theme or catalogue or \
group.is_internal_wms == tree_item.is_internal_wms:
gp, gp_errors = self._group(
"{0!s}/{1!s}".format(path, tree_item.name),
u"{0!s}/{1!s}".format(path, tree_item.name),
tree_item, layers, depth=depth, min_levels=min_levels,
catalogue=catalogue, role_id=role_id, version=version, mixed=mixed,
time=time, dim=dim, wms_layers=wms_layers, layers_name=layers_name, **kwargs
Expand Down

0 comments on commit 9d9442e

Please sign in to comment.