Skip to content

Commit

Permalink
Fix path used in download_from_bucketfs_to_fileobj
Browse files Browse the repository at this point in the history
  • Loading branch information
tkilias committed Mar 6, 2024
1 parent 974803b commit 4e7f22e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion exasol_bucketfs_utils_python/bucketfs_location.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ def get_complete_file_path_in_bucket(

def download_from_bucketfs_to_fileobj(self, bucket_file_path: str, fileobj: IO):
download.download_from_bucketfs_to_fileobj(fileobj=fileobj,
bucket_file_path=bucket_file_path,
bucket_file_path=self.get_complete_file_path_in_bucket(
bucket_file_path),
bucket_config=self.bucket_config)

def download_from_bucketfs_to_string(self, bucket_file_path: str) -> str:
Expand Down

0 comments on commit 4e7f22e

Please sign in to comment.