Skip to content

Commit

Permalink
Make _restore.py -i db.table option work
Browse files Browse the repository at this point in the history
  • Loading branch information
srh committed Nov 10, 2023
1 parent 0f7d923 commit 0342080
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rethinkdb/_restore.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def do_unzip(temp_dir, options):
)

# filter out tables we are not looking for
table = os.path.splitext(file_name)
table = os.path.splitext(file_name)[0]
if tables_to_export and not (
(db, table) in tables_to_export or (db, None) in tables_to_export
):
Expand Down

0 comments on commit 0342080

Please sign in to comment.