Skip to content

Commit

Permalink
fixup! repozo: support incremental recover
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebatyne committed Oct 22, 2024
1 parent 67ab5a6 commit c485afb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ZODB/scripts/repozo.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit c485afb

Please sign in to comment.