summaryrefslogtreecommitdiffstats
path: root/ogcp/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'ogcp/views.py')
-rw-r--r--ogcp/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ogcp/views.py b/ogcp/views.py
index c230288..75114b7 100644
--- a/ogcp/views.py
+++ b/ogcp/views.py
@@ -969,7 +969,7 @@ def image_fits_in_cache(server, clients_info, image):
free_cache = client_info['free_cache']
if free_cache < image_size:
missing_cache = image_size - free_cache
- err_report += f'{ip} requires {(missing_cache / (1024 ** 3)):.3f} free GiB<br>'
+ err_report += f'{ip} requires {(missing_cache / (1024 ** 3)):.3f} more free GiB<br>'
if err_report:
flash(f'No space left on cache:<br>{err_report}', category='error')