Skip to content

Commit

Permalink
remove extra comma
Browse files Browse the repository at this point in the history
  • Loading branch information
TomeCirun committed Jul 15, 2021
1 parent 5321896 commit fb27f2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ckan/templates/snippets/changes/maintainer.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
{% if change.method == "change" %}

{{ _('Set maintainer of {pkg_link} to {new_maintainer} (previously {old_maintainer})').format(
pkg_link = h.nav_link(change.title, named_route='dataset.read', id=change.pkg_id),,
pkg_link = h.nav_link(change.title, named_route='dataset.read', id=change.pkg_id),
new_maintainer = change.new_maintainer,
old_maintainer = change.old_maintainer
) }}

{% elif change.method == "add" %}

{{ _('Set maintainer of {pkg_link} to {new_maintainer}').format(
pkg_link = h.nav_link(change.title, named_route='dataset.read', id=change.pkg_id),,
pkg_link = h.nav_link(change.title, named_route='dataset.read', id=change.pkg_id),
new_maintainer = change.new_maintainer
) }}

Expand Down

0 comments on commit fb27f2a

Please sign in to comment.