Skip to content

Commit

Permalink
Fix the bug
Browse files Browse the repository at this point in the history
  • Loading branch information
papa99do committed Aug 12, 2024
1 parent b3bed9b commit 1867a84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/marqo/core/index_management/vespa_application_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,8 @@ def __init__(self, backup_zip_file_content: Optional[bytes] = None) -> None:
os.remove(self._removal_mark_file)

def __repr__(self):
return (f'<VespaAppBackup files_to_rollback={[os.path.join(paths) for paths in self._files_to_rollback]} '
f'files_to_remove={[os.path.join(paths) for paths in self._files_to_remove]}>')
return (f'<VespaAppBackup files_to_rollback={[os.path.join(*paths) for paths in self._files_to_rollback]} '
f'files_to_remove={[os.path.join(*paths) for paths in self._files_to_remove]}>')

def read_text_file(self, *paths: str) -> Optional[str]:
path = os.path.join(self._dir, *paths)
Expand Down

0 comments on commit 1867a84

Please sign in to comment.