diff --git a/openatlas/display/util.py b/openatlas/display/util.py index bed9d9b9f..ebea7cf39 100644 --- a/openatlas/display/util.py +++ b/openatlas/display/util.py @@ -506,6 +506,7 @@ def format_date(value: Union[datetime, numpy.datetime64]) -> str: def convert_size(size_bytes: int) -> str: + print(size_bytes) if size_bytes == 0: return "0 B" # pragma: no cover size_name = ("B", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB")