From 2d6ff3d9fb4514afacb26a7f9220a9abc493082c Mon Sep 17 00:00:00 2001 From: lllyasviel Date: Thu, 25 Jan 2024 13:23:18 -0800 Subject: [PATCH] Update upscaler.py --- modules/upscaler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/upscaler.py b/modules/upscaler.py index af43c9af..558aa92f 100644 --- a/modules/upscaler.py +++ b/modules/upscaler.py @@ -11,7 +11,7 @@ from ldm_patched.modules import model_management def prepare_free_memory(): model_management.free_memory(memory_required=1024*1024*3, device=model_management.get_torch_device()) - print('Upscale script is freed memory successfully.') + print('Upscale script freed memory successfully.') LANCZOS = (Image.Resampling.LANCZOS if hasattr(Image, 'Resampling') else Image.LANCZOS)