forked from platformio/platformio-core
Rename "fs.format_filesize" to "fs.humanize_file_size"
This commit is contained in:
@ -59,8 +59,8 @@ def print_boards(boards):
|
||||
click.style(b["id"], fg="cyan"),
|
||||
b["mcu"],
|
||||
"%dMHz" % (b["fcpu"] / 1000000),
|
||||
fs.format_filesize(b["rom"]),
|
||||
fs.format_filesize(b["ram"]),
|
||||
fs.humanize_file_size(b["rom"]),
|
||||
fs.humanize_file_size(b["ram"]),
|
||||
b["name"],
|
||||
)
|
||||
for b in boards
|
||||
|
Reference in New Issue
Block a user