Skip to content

Commit 9574ed8

Browse files
author
Andrei Neagu
committed
log error cleanup
1 parent 69cf7cb commit 9574ed8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/simcore-sdk/src/simcore_sdk/node_ports_common/aws_s3_cli_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
def _parse_size(log_string):
1414
match = re.search(r"^\w+ (?P<size>[^\/]+)", log_string)
1515
if match:
16-
return match.group("size")
16+
return match.group("size").replace("Bytes", "")
1717
return None
1818

1919

0 commit comments

Comments
 (0)