summaryrefslogtreecommitdiff
path: root/python/collaboration/examples/download_everything.py
diff options
context:
space:
mode:
authorGlenn Smith <glenn@vector35.com>2024-07-16 13:10:16 -0400
committerGlenn Smith <glenn@vector35.com>2024-07-16 13:10:16 -0400
commit2623732719499315844444663243176709658784 (patch)
tree9ca381b2ad255c8ef5662aa3ca2da645ba79fa6e /python/collaboration/examples/download_everything.py
parentc473dc8bbe0b224f59a0fe1b8cbde2cd67d083af (diff)
Update api usage in the other collaboration examples
Diffstat (limited to 'python/collaboration/examples/download_everything.py')
-rw-r--r--python/collaboration/examples/download_everything.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/collaboration/examples/download_everything.py b/python/collaboration/examples/download_everything.py
index a3f908aa..8740fca3 100644
--- a/python/collaboration/examples/download_everything.py
+++ b/python/collaboration/examples/download_everything.py
@@ -40,7 +40,7 @@ def main():
# Pull every file from every project
for project in remote.projects:
for file in project.files:
- bndb_path = file.default_bndb_path
+ bndb_path = file.default_path
print(f"{project.name}/{file.name} BNDB at {bndb_path}")
try: