Fixing free space test in vacuum review panel

This commit is contained in:
Hydrus Network Developer 2024-11-20 16:38:46 -06:00
parent 528f4330f4
commit 5e68f9998f
No known key found for this signature in database
GPG Key ID: 76249F053212133C
1 changed files with 1 additions and 1 deletions

View File

@ -3792,7 +3792,7 @@ Vacuuming is an expensive operation. It creates one (temporary) copy of the data
page_count = vacuum_dict[ 'page_count' ]
freelist_count = vacuum_dict[ 'freelist_count' ]
HydrusDB.CheckCanVacuumData( path, page_size, page_count, freelist_count )
HydrusDB.CheckCanVacuumIntoData( path, page_size, page_count, freelist_count )
except Exception as e: