Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion augur/util_support/auspice_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def _rename_deprecated_colorings(colorings: list):
deprecated(f"[config file] ignoring deprecated {old_key!r} because a coloring for {new_key!r} already exists")
colorings = [c for [idx, c] in enumerate(colorings) if idx!=old_coloring['index']]
else:
deprecated(f"[config file] renaming coloring {old_key!r} to {new_key!r}")
deprecated(f"[config file] The deprecated coloring key {old_key!r} has been automatically renamed to {new_key!r}. Update your auspice config file to use {new_key!r} instead of {old_key!r} to remove this warning.")
colorings[old_coloring['index']]['key'] = new_key
return colorings

Expand Down
Loading