Skip to content

Commit

Permalink
Merge pull request #30 from lsst-dm/tickets/DM-40150
Browse files Browse the repository at this point in the history
DM-40150: Butler.datastore is no longer public attribute so use private one
  • Loading branch information
timj authored Jan 8, 2024
2 parents 7ce1343 + bdfe3fa commit a19f4ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: pip install --no-deps -v .

- name: Install documenteer
run: pip install 'documenteer[pipelines]>0.8,<0.9'
run: pip install 'documenteer[pipelines]==0.8.2'

- name: Build documentation
env:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ def transfer_non_datasets(source_butler: DirectButler, dest_butler: DirectButler
BackendClass = get_class_of(source_butler._config["repo_transfer_formats", "yaml", "export"])
backend = BackendClass(yamlBuffer)
exporter = RepoExportContext(
source_butler._registry, source_butler.datastore, backend, directory=None, transfer=None
source_butler._registry, source_butler._datastore, backend, directory=None, transfer=None
)

# Export all the collections.
Expand Down

0 comments on commit a19f4ec

Please sign in to comment.