Disable size string

This commit is contained in:
George Lacey 2022-04-06 13:31:02 +01:00
parent a5ef28a0f8
commit de0b69f3cb

View File

@ -10,7 +10,7 @@ def repo_json(request, repo_label):
repo = get_object_or_404(Repo, label__label=repo_label)
repo_dict = {'location': repo.location,
'latest_backup': "repo.last_backup()",
'size': repo.size_string(),
'size': "repo.size_string()",
'recent_errors': "not implemented",
'warning': repo.warning(),
'error': repo.error()}