Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ development source code and as such may not be routinely kept up to date.

# __NEXT__

## Bug fixes

* An error message that's printed by `nextstrain remote upload` when unknown
files are given for upload to destinations on nextstrain.org now properly
includes the actual list of unknown files instead of the placeholder
`{files}`.
([#260](https://github.com/nextstrain/cli/pull/260))


# 6.1.0.post1 (18 January 2023)

Expand Down
2 changes: 1 addition & 1 deletion nextstrain/cli/remote/nextstrain_dot_org.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def file_list(files: Iterable):
# appropriate API requests to the group endpoint (which doesn't yet
# exist).
# -trs, 23 Sept 2021
raise UserError("""
raise UserError(f"""
Only datasets (v2) and narratives are currently supported for
upload to nextstrain.org, but other files were given:

Expand Down