From c485afb6c70f30bd657a8017d2e8863818dde34d Mon Sep 17 00:00:00 2001 From: Nicolas Wavrant Date: Tue, 22 Oct 2024 18:18:03 +0900 Subject: [PATCH] fixup! repozo: support incremental recover --- src/ZODB/scripts/repozo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ZODB/scripts/repozo.py b/src/ZODB/scripts/repozo.py index ce6067447..7b388a0df 100755 --- a/src/ZODB/scripts/repozo.py +++ b/src/ZODB/scripts/repozo.py @@ -815,7 +815,7 @@ def do_recover(options): else: raise NoFiles('No files in repository') - if options.full or not os.path.exists(options.output): + if options.full or options.output is not None or not os.path.exists(options.output): do_full_recover(options, repofiles) else: do_incremental_recover(options, repofiles)