From 0a970dd5a202e2d1b724e5216a5b94b82cded903 Mon Sep 17 00:00:00 2001 From: Jakob Date: Fri, 6 Dec 2019 14:05:41 -0600 Subject: [PATCH] Bug fix --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index eafa2b8..1e0aab2 100644 --- a/main.py +++ b/main.py @@ -86,7 +86,7 @@ with StorageManager(Path('auth_cache')) as storage_mgr: local_course_root = Path(cfg_section['base_path']) local_course_root.mkdir(parents = True, exist_ok = True) - meta_path = local_course_root.get_ads(fs.BB_META_STREAM_NAME) + meta_path = fs.get_ads(local_course_root, fs.BB_META_STREAM_NAME) if meta_path.is_file(): with meta_path.open() as f: try: -- 2.30.2