Skip to content

Commit

Permalink
fix: 上传到 MuseTransfer 文件名错误
Browse files Browse the repository at this point in the history
  • Loading branch information
Pandaft committed Oct 15, 2022
1 parent dad4bce commit e2b648a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion uploader/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

@click.group()
def cli():
"""uploader - v0.1.4"""
"""uploader - v0.1.5"""
pass


Expand Down
2 changes: 1 addition & 1 deletion uploader/musetransfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ def upload_part(part_num, part_data):
"filePathList": [
{
"etag": complete_result.etag,
"fileName": file_info["upl_path"],
"fileName": file_info["upl_path"].lstrip("\\"),
"path": upl_path
}
],
Expand Down

0 comments on commit e2b648a

Please sign in to comment.