We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3260175 commit 9e8480eCopy full SHA for 9e8480e
sync/__init__.py
@@ -1,5 +1,5 @@
1
"""Library for leveraging the power of Sync"""
2
3
-__version__ = "1.8.1"
+__version__ = "1.8.2"
4
5
TIME_FORMAT = "%Y-%m-%dT%H:%M:%SZ"
sync/_databricks.py
@@ -1462,7 +1462,7 @@ def _get_eventlog_from_dbfs(
1462
root_dir = dbx_client.list_dbfs_directory(prefix)
1463
1464
if "files" not in root_dir:
1465
- raise DatabricksDBFSMissingFiles("Unable to locate files in DBFS dir - prefix:%s", prefix)
+ raise DatabricksDBFSMissingFiles(f"Unable to locate files in DBFS dir - prefix: {prefix}")
1466
1467
eventlog_files = [f for f in root_dir["files"] if f["is_dir"]]
1468
matching_subdirectory = None
0 commit comments