maestral
maestral copied to clipboard
[BUG] Maestral deleted almost everything in my Dropbox
Describe the bug
After a fresh install of maestral on a system using the GPFS filesystem, almost the entire contents of my Dropbox were deleted upstream.
To Reproduce
I will provide a detailed description of what happened below, but I do not want to try to reproduce this.
System (please complete the following information):
- Maestral version: maestral 1.3.1 from pip
- OS: CentOS Linux release 7.9.2009 (Core)
- Desktop environment: None, CLI only
Additional context
I have used maestral on GPFS in the past a lot already. I am aware that this is an unsupported filesystem, but since I only care about upstream --> local sync, this should not matter for my usecase. It has, so far, always worked great for me.
This time, I did a fresh install of maestral (2 official Dropbox clients and 2 maestral clients are already running for the same Dropbox on other machines) on a new machine using the GPFS filesystem.
I have a largeish Dropbox (several 10k files, ~100GB stored), so I go do something else while it syncs up.
I come back to maestral seemingly having completed syncing, and very high activity on my official desktop client (different machine, obviously). I assume that due to filesystem limitations something is off about the file ctimes, and that it's going to realize there isn't anything to do. So again I go do something else.
I check back to find my Dropbox on my local machine empty, save a few dozen files. It looks like those files are mostly (but not exclusively) files that I looked at on the machine that had the new maestral installed.
The maestral directory of the newly installed client is still full, though, and looks (have no way of checking exactly) like it's complete. My other Dropbox clients and maestral installs have also deleted almost everything (and that's what the dropbox website shows too).
At that point, I stop the new maestral, make a backup copy of the maestral directory, and restart maestral. Maestral starts uploading files, and my other dropbox clients receive most of the original contents of my Dropbox again.
I let that run over night. The next day, all my official dropbox and maestral clients look like they have the full original contents again (again, no way of checking precisely). I restart the new maestral to make sure that it's stable now. It starts deleting files again.
This is where I give up, I'll restore my Dropbox contents from the backup copy I made earlier, though that's somewhat unsatisfactory since I can't check that against the contents of my Dropbox before this all started (N.b.: Dropbox' "rewind" feature seems to be half broken.) and sync back up with the official client...
@fabiansvara, thank you for the detailed report. I am very sorry that this happened!
The maestral directory of the newly installed client is still full, though, and looks (have no way of checking exactly) like it's complete.
This is really confusing. There are two ways that local files get flagged as deleted and trigger a deletion on Dropbox servers:
-
The file system observer receives a "deleted" event from inotify. I am almost certain that this shouldn't happen with GPFS at all since inotify will likely be disabled for such a distributed file system. Or is it possibly enabled?
-
On startup or after the initial indexing and download, maestral will scan the entire directory and stat every file. It will then compare this directory snapshot against its database and emit "deleted" events for every entry in the database which is missing from the snapshot, "created" events for every entry in the snapshot which is missing from the database, and "modified" events depending on the ctimes vs sync times. If this directory snapshot for some reason is missing files which are actually in the file system, it will go ahead and remove them from Dropbox.
The second scenario seems more likely to me from your description. Deletions seems to be triggered either on startup or after the initial download. But I struggle to understand what might be going wrong. The directory snapshot really is only a succession of os.scandir
and os.stat
calls. Could this somehow fail on GPFS? And why would it only fail on one system?
Do you have log output from the times where it started deleting files? Could you share that? You can open the log in a text editor with maestral log show -e
.
Thanks! This really looks like the files are deleted during the "Indexing local changes" stage.
Are you comfortable with Python? If yes, could you try to run the following with the misbehaving instance?
-
Manually query for local changes:
from pprint import pprint from maestral.main import Maestral m = Maestral() changes = m.sync._get_local_changes_while_inactive() pprint(changes)
The above code won't sync anything but just report the detected changes. Does the output contain multiple
FileDeletedEvent
s? If yes, do some of those correspond to still existing files? -
If this is the case, could you try to manually create a snapshot of the directory and see if those files are not showing up?
from maestral.sync import DirectorySnapshot snapshot = DirectorySnapshot(m.dropbox_path) print(missing_path in snapshot.path)
-
Can you try to stat one of the missing paths? And scan its parent directory?
import os os.stat(missing_path) list(os.scandir(os.dirname(missing_path)))
Do those calls raise any errors?
I ran this:
from pprint import pprint from maestral.main import Maestral m = Maestral() changes = m.sync._get_local_changes_while_inactive()
... followed by:
In : deleted = [xx for xx in changes[0] if 'deleted' in str(type(xx)).lower()]
In : len(deleted)
Out: 2268
In : set(type(xx) for xx in deleted)
Out: {watchdog.events.DirDeletedEvent, watchdog.events.FileDeletedEvent}
In : from pathlib import Path
: all([Path(xx.src_path).exists() for xx in deleted])
Out: True
Here, I wasn't sure what missing_path was supposed to be:
from maestral.sync import DirectorySnapshot snapshot = DirectorySnapshot(m.dropbox_path) print(missing_path in snapshot.path)
... but I guess you wanted it to be one of the apparently deleted files. Also, missing_path in snapshot.path
raises
TypeError: argument of type 'method' is not iterable
so I did:
In : missing_path=deleted[0]
In : missing_path
Out: <DirDeletedEvent: src_path='...'>
In : missing_path.src_path in snapshot.path.__repr__()
Out: True
Then, I ran
In : os.stat(missing_path.src_path)
Out: os.stat_result(st_mode=16877, st_ino=68672211, st_dev=43, st_nlink=2, st_uid=33815, st_gid=13600, st_size=4096, st_atime=1612033069, st_mtime=1611934050, st_ctime=1611934050)
In : len(list(os.scandir(os.path.dirname(missing_path.src_path))))
Out: 19
Do those calls raise any errors?
from pprint import pprint
from maestral.main import Maestral
m = Maestral()
raised
Could not connect to DBUS interface
Traceback (most recent call last):
File "/home/folder/anaconda3/lib/python3.8/site-packages/maestral/notify/notify_linux.py", line 57, in _init_dbus
self.bus = await MessageBus().connect()
File "/home/folder/anaconda3/lib/python3.8/site-packages/dbus_next/aio/message_bus.py", line 122, in __init__
super().__init__(bus_address, bus_type, ProxyObject)
File "/home/folder/anaconda3/lib/python3.8/site-packages/dbus_next/message_bus.py", line 73, in __init__
get_bus_address(bus_type))
File "/home/folder/anaconda3/lib/python3.8/site-packages/dbus_next/_private/address.py", line 98, in get_bus_address
return get_session_bus_address()
File "/home/folder/anaconda3/lib/python3.8/site-packages/dbus_next/_private/address.py", line 72, in get_session_bus_address
with open('/var/lib/dbus/machine-id') as f:
FileNotFoundError: [Errno 2] No such file or directory: '/var/lib/dbus/machine-id'
Thanks! This is still a bit confusing but we'll eventually get to the bottom of the issue.
Just to confirm the events listed in changes[0]
, are those mostly FileDeletedEvent
s and DirDeletedEvent
s?
Here, I wasn't sure what missing_path was supposed to be
Yeah, that was ambiguous. missing_path
is supposed to be the path of an item which is listed as deleted in the list of changes but actually still exists. For instance:
# get changes
changes, timestamp = m.sync._get_local_changes_while_inactive()
# filter all deleted paths
deleted_paths = [event.src_path for event in changes if event.event_type == 'deleted']
# filter all paths incorrectly reported as deleted
incorrect_paths = [p for p in deleted_paths if os.path.exists(p)]
Also, missing_path in snapshot.path raises
TypeError: argument of type 'method' is not iterable
Sorry, that was a typo. I meant: missing_path in snapshot.paths
. For instance:
for path in incorrect_paths:
if path in snapshot.paths:
print(f'{path} was reported as deleted but exists in directory snapshot')
The error message "Could not connect to DBUS interface" is safe to ignore, it just means that Maestral could not connect to a dbus service for desktop notifications (probably because you are on a headless system?).
Thanks! This is still a bit confusing but we'll eventually get to the bottom of the issue.
Just to confirm the events listed in
changes[0]
, are those mostlyFileDeletedEvent
s andDirDeletedEvent
s?
It's many, but not most of them:
In : from collections import Counter
In : Counter(type(xx) for xx in changes[0])
Out:
Counter({watchdog.events.FileCreatedEvent: 13476,
watchdog.events.DirCreatedEvent: 1879,
watchdog.events.DirDeletedEvent: 1037,
watchdog.events.FileDeletedEvent: 1231})
Here, I wasn't sure what missing_path was supposed to be
Yeah, that was ambiguous.
missing_path
is supposed to be the path of an item which is listed as deleted in the list of changes but actually still exists.
Ok, but that's what I thought you meant and at least item 0 was listed as deleted, existed on disk, and was also in the snapshot.
Anyhow I ran all of this ...
# get changes changes, timestamp = m.sync._get_local_changes_while_inactive() # filter all deleted paths deleted_paths = [event.src_path for event in changes if event.event_type == 'deleted'] # filter all paths incorrectly reported as deleted incorrect_paths = [p for p in deleted_paths if os.path.exists(p)] for path in incorrect_paths: if path in snapshot.paths: print(f'{path} was reported as deleted but exists in directory snapshot')
and it prints lots of files. In fact, all of the "deleted" ones.
In : count = 0
...: for path in incorrect_paths:
...: if path in snapshot.paths:
...: count += 1
In : print(count)
2268
In : len(deleted_paths)
Out: 2268
This is all very strange. It looks like some files are picked up by the manual directory snapshot but not by the one created during _get_local_changes_while_inactive
. Also, the number of reported deletions is actually quite a bit smaller than I expected from your previous reports. But the total number of reported changes seems very large (13476 unindexed files?).
Are there any other entries for the same paths reported in the change set? For example, if a file has been replaced by a folder, there will be two events (FileDeletedEvent and DirCreatedEvent) for the same path. This could explain some of the deleted events. Also, are any of the events in the list of changes unexpected, apart from the deleted events?
Apart from this, I really have no clue as to what might be happening. If the file names are not confidential, you could possiblly pickle the directory snapshot and the list of changes and send them to me together with the index file at ~/.local/share/maestral/maestral.db
. Maybe this will help to understand those phantom deletions (and creations?) are coming from.
Finally, you try excluding all folders but a single test folder from sync and see if you can reproduce the behaviour with a more controlled number of files.
Also, thanks for bearing with me. I am really sorry for all the trouble! Mostly, I am concerned that the deletions are not a consequence of an unsupported file system but come from another error. So it would be good to understand what happened.
Before I try these things, I think I know what must have happened: Does maestral keep a cache of Dropbox contents around that persists between installs? I just remembered I had maestral installed on this machine already ~2 years ago, and most likely I used the same folder to sync to. If that was the case then yes, these files have indeed been locally deleted at some point. Doesn't fully explain to me why it started by successfully downloading everything from Dropbox, but maybe that's where GPFS comes in?
Hm, that might be possible. It does keep a database with the local file index and content hashes which will persist between installs. This cache should be removed when explicitly unlinking, but that might have been flaky two years ago...
This could indeed trigger false deleted events when the local files don't exist at startup (they haven't been downloaded yet) but are still in the index. But it doesn't explain this behaviour:
I let that run over night. The next day, all my official dropbox and maestral clients look like they have the full original contents again (again, no way of checking precisely). I restart the new maestral to make sure that it's stable now. It starts deleting files again.
I just installed Maestral and started it syncing over night and it also deleted a ton of stuff. Here are some logs:
Expand log
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:38 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:38 sync INFO: Syncing ↓ 290/492
2021-10-29 07:49:38 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:38 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:39 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:39 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:39 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:39 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:39 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:39 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:39 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:39 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:39 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:40 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:40 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:40 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:40 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:40 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:40 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:40 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:40 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:40 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:40 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:41 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:41 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:41 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:41 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:41 sync INFO: Syncing ↓ 387/492
2021-10-29 07:49:41 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:41 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:41 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:41 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:41 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:41 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:41 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:41 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:41 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:41 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:41 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:42 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:42 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:42 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:42 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:42 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:42 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:42 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:42 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:42 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:42 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:42 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:42 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:43 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:43 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:43 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:43 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:43 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:43 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:43 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:43 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:43 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:43 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:43 sync INFO: Syncing ↓ 426/492
2021-10-29 07:49:44 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:44 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:44 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:44 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:44 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:44 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:44 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:44 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:44 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:44 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:44 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:44 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:45 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:45 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:45 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:45 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:45 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:45 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:45 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:45 sync INFO: Could not sync Kid pics
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/Kid pics'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:45 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:46 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:46 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:49:46 sync INFO: Syncing ↓ 452/492
2021-10-29 07:49:49 sync INFO: Syncing ↓ 477/492
2021-10-29 07:49:52 sync INFO: Indexing 94557...
2021-10-29 07:49:52 sync INFO: Creating folders...
2021-10-29 07:49:52 sync INFO: Creating folder 1/2...
2021-10-29 07:49:55 sync INFO: Syncing ↓ 1/135
2021-10-29 07:49:59 sync INFO: Syncing ↓ 4/135
2021-10-29 07:50:06 sync INFO: Syncing ↓ 15/135
2021-10-29 07:50:08 sync INFO: Syncing ↓ 17/135
2021-10-29 07:50:10 sync INFO: Syncing ↓ 38/135
2021-10-29 07:50:15 sync INFO: Syncing ↓ 40/135
2021-10-29 07:50:17 sync INFO: Syncing ↓ 52/135
2021-10-29 07:50:19 sync INFO: Syncing ↓ 55/135
2021-10-29 07:50:24 sync INFO: Syncing ↓ 61/135
2021-10-29 07:50:26 sync INFO: Syncing ↓ 70/135
2021-10-29 07:50:28 sync INFO: Syncing ↓ 104/135
2021-10-29 07:50:31 sync INFO: Syncing ↓ 126/135
2021-10-29 07:50:35 sync INFO: Indexing 95057...
2021-10-29 07:50:35 sync INFO: Creating folders...
2021-10-29 07:50:36 sync INFO: Creating folder 1/254...
2021-10-29 07:50:38 sync INFO: Creating folder 19/254...
2021-10-29 07:50:40 sync INFO: Creating folder 64/254...
2021-10-29 07:50:42 sync INFO: Creating folder 111/254...
2021-10-29 07:50:45 sync INFO: Creating folder 147/254...
2021-10-29 07:50:48 sync INFO: Creating folder 200/254...
2021-10-29 07:50:50 sync INFO: Creating folder 252/254...
2021-10-29 07:50:52 sync INFO: Syncing ↓ 1/246
2021-10-29 07:50:55 sync INFO: Syncing ↓ 13/246
2021-10-29 07:50:57 sync INFO: Syncing ↓ 30/246
2021-10-29 07:50:59 sync INFO: Syncing ↓ 57/246
2021-10-29 07:51:01 sync INFO: Syncing ↓ 69/246
2021-10-29 07:51:03 sync INFO: Syncing ↓ 103/246
2021-10-29 07:51:07 sync INFO: Syncing ↓ 104/246
2021-10-29 07:51:10 sync INFO: Syncing ↓ 147/246
2021-10-29 07:51:12 sync INFO: Syncing ↓ 176/246
2021-10-29 07:51:15 sync INFO: Syncing ↓ 201/246
2021-10-29 07:51:18 sync INFO: Syncing ↓ 221/246
2021-10-29 07:51:20 sync INFO: Syncing ↓ 242/246
2021-10-29 07:51:23 sync INFO: Indexing 95528...
2021-10-29 07:51:23 sync INFO: Creating folders...
2021-10-29 07:51:24 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3335, in _create_local_entry
res = self._on_remote_folder(event)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:51:24 sync INFO: Creating folder 1/2...
2021-10-29 07:51:29 sync INFO: Syncing ↓ 1/468
2021-10-29 07:51:33 sync INFO: Syncing ↓ 13/468
2021-10-29 07:51:38 sync INFO: Syncing ↓ 25/468
2021-10-29 07:51:46 sync INFO: Syncing ↓ 26/468
2021-10-29 07:51:52 sync INFO: Syncing ↓ 51/468
2021-10-29 07:51:56 sync INFO: Syncing ↓ 56/468
2021-10-29 07:52:13 sync INFO: Syncing ↓ 62/468
2021-10-29 07:52:17 sync INFO: Syncing ↓ 94/468
2021-10-29 07:52:18 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:19 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:19 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:19 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:19 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:20 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:20 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:20 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:20 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:20 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:20 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:21 sync INFO: Syncing ↓ 100/468
2021-10-29 07:52:21 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:21 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:22 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:22 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:22 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:22 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:22 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:22 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:22 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:22 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:22 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:22 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:22 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:23 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:23 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:23 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:23 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:23 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:23 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:23 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:23 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:23 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:23 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:23 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:23 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:23 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:23 sync INFO: Syncing ↓ 130/468
2021-10-29 07:52:24 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:24 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:24 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:24 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:24 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:24 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:24 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:24 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:24 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:24 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:25 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:25 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:25 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:25 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:25 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:25 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:25 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:25 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:25 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:25 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:25 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:25 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:26 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:26 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:26 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:26 sync INFO: Syncing ↓ 158/468
2021-10-29 07:52:26 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:27 sync INFO: Could not sync catherine stuff
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Camera Uploads/catherine stuff'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3532, in _on_remote_folder
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:52:29 sync INFO: Syncing ↓ 192/468
2021-10-29 07:52:32 sync INFO: Syncing ↓ 226/468
2021-10-29 07:52:34 sync INFO: Syncing ↓ 242/468
2021-10-29 07:52:38 sync INFO: Syncing ↓ 271/468
2021-10-29 07:52:41 sync INFO: Syncing ↓ 284/468
2021-10-29 07:52:44 sync INFO: Syncing ↓ 323/468
2021-10-29 07:52:48 sync INFO: Syncing ↓ 334/468
2021-10-29 07:52:50 sync INFO: Syncing ↓ 370/468
2021-10-29 07:52:52 sync INFO: Syncing ↓ 390/468
2021-10-29 07:52:55 sync INFO: Syncing ↓ 411/468
2021-10-29 07:52:57 sync INFO: Syncing ↓ 432/468
2021-10-29 07:53:00 sync INFO: Syncing ↓ 451/468
2021-10-29 07:53:04 sync INFO: Indexing 95862...
2021-10-29 07:53:04 sync INFO: Creating folders...
2021-10-29 07:53:04 sync INFO: Creating folder 1/1...
2021-10-29 07:53:07 sync INFO: Syncing ↓ 2/333
2021-10-29 07:53:12 sync INFO: Syncing ↓ 3/333
2021-10-29 07:53:18 sync INFO: Syncing ↓ 13/333
2021-10-29 07:53:24 sync INFO: Syncing ↓ 23/333
2021-10-29 07:53:29 sync INFO: Syncing ↓ 32/333
2021-10-29 07:53:34 sync INFO: Syncing ↓ 37/333
2021-10-29 07:53:38 sync INFO: Syncing ↓ 40/333
2021-10-29 07:53:43 sync INFO: Syncing ↓ 53/333
2021-10-29 07:53:50 sync INFO: Syncing ↓ 61/333
2021-10-29 07:53:54 sync INFO: Syncing ↓ 63/333
2021-10-29 07:54:00 sync INFO: Syncing ↓ 84/333
2021-10-29 07:54:03 sync INFO: Syncing ↓ 89/333
2021-10-29 07:54:12 sync INFO: Syncing ↓ 98/333
2021-10-29 07:54:14 sync INFO: Syncing ↓ 118/333
2021-10-29 07:54:18 sync INFO: Syncing ↓ 126/333
2021-10-29 07:54:22 sync INFO: Syncing ↓ 140/333
2021-10-29 07:54:25 sync INFO: Could not sync wallpaper
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Pictures/wallpaper'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:54:26 sync INFO: Syncing ↓ 145/333
2021-10-29 07:54:27 sync INFO: Could not sync wallpaper
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3545, in _on_remote_folder
os.mkdir(event.local_path)
FileNotFoundError: [Errno 2] No such file or directory: '/home/frew/Dropbox/Pictures/wallpaper'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3333, in _create_local_entry
res = self._on_remote_file(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3415, in _on_remote_file
self._ensure_parent(event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3383, in _ensure_parent
self._on_remote_folder(parent_event, client)
File "/home/frew/.local/lib/python3.8/site-packages/maestral/sync.py", line 3550, in _on_remote_folder
raise os_to_maestral_error(err, dbx_path=event.dbx_path)
maestral.errors.NotFoundError: Could not sync file or folder. The given path does not exist.
2021-10-29 07:54:29 sync INFO: Syncing ↓ 157/333
2021-10-29 07:54:31 sync INFO: Syncing ↓ 170/333
2021-10-29 07:54:34 sync INFO: Syncing ↓ 185/333
2021-10-29 07:54:37 sync INFO: Syncing ↓ 215/333
2021-10-29 07:54:40 sync INFO: Syncing ↓ 237/333
2021-10-29 07:54:42 sync INFO: Syncing ↓ 259/333
2021-10-29 07:54:46 sync INFO: Syncing ↓ 299/333
2021-10-29 07:54:48 sync INFO: Syncing ↓ 324/333
2021-10-29 07:54:51 sync INFO: Up to date
2021-10-29 07:54:51 sync INFO: Indexing local changes...
2021-10-29 07:55:02 sync INFO: Uploading deletions...
2021-10-29 07:55:14 sync INFO: Deleting 1/4...
2021-10-29 07:56:14 sync INFO: Deleting 3/4...
2021-10-29 07:56:18 sync INFO: Syncing ↑ 1/1
2021-10-29 07:56:21 sync INFO: Syncing ↑ 1/32
2021-10-29 07:56:24 sync INFO: Syncing ↑ 1/1
2021-10-29 07:56:25 manager INFO: Up to date
2021-10-29 07:56:27 manager INFO: Syncing...
2021-10-29 07:56:31 manager INFO: Syncing...
2021-10-29 08:01:24 sync INFO: Syncing ↑ 1/3
2021-10-29 08:01:27 sync INFO: Syncing ↑ 1/33
2021-10-29 08:01:29 sync INFO: Syncing ↑ 1/2
2021-10-29 08:01:29 manager INFO: Up to date
2021-10-29 08:01:29 sync INFO: Fetching remote changes
2021-10-29 08:01:31 sync INFO: Indexing 501...
2021-10-29 08:01:31 sync INFO: Applying deletions...
2021-10-29 08:01:31 sync INFO: Deleting 1/30...
2021-10-29 08:01:33 sync INFO: Deleting 201/465...
2021-10-29 08:01:35 sync INFO: Deleting 433/465...
2021-10-29 08:01:36 sync INFO: Indexing 1001...
2021-10-29 08:01:36 sync INFO: Applying deletions...
2021-10-29 08:01:37 sync INFO: Deleting 61/496...
2021-10-29 08:01:39 sync INFO: Deleting 295/496...
2021-10-29 08:01:42 sync INFO: Indexing 1501...
2021-10-29 08:01:42 sync INFO: Applying deletions...
2021-10-29 08:01:42 sync INFO: Deleting 1/248...
2021-10-29 08:01:44 sync INFO: Deleting 240/248...
2021-10-29 08:01:46 sync INFO: Deleting 217/250...
2021-10-29 08:01:47 sync INFO: Indexing 2001...
2021-10-29 08:01:47 sync INFO: Applying deletions...
2021-10-29 08:01:48 sync INFO: Deleting 126/500...
2021-10-29 08:01:51 sync INFO: Deleting 361/500...
2021-10-29 08:01:52 sync INFO: Indexing 2501...
2021-10-29 08:01:52 sync INFO: Applying deletions...
2021-10-29 08:01:53 sync INFO: Deleting 1/12...
2021-10-29 08:01:55 sync INFO: Deleting 13/292...
2021-10-29 08:01:57 sync INFO: Deleting 249/292...
2021-10-29 08:01:58 sync INFO: Indexing 3001...
2021-10-29 08:01:58 sync INFO: Applying deletions...
2021-10-29 08:01:59 sync INFO: Deleting 49/295...
2021-10-29 08:02:01 sync INFO: Deleting 279/295...
2021-10-29 08:02:03 sync INFO: Indexing 3501...
2021-10-29 08:02:03 sync INFO: Applying deletions...
2021-10-29 08:02:03 sync INFO: Deleting 1/480...
2021-10-29 08:02:05 sync INFO: Deleting 241/480...
2021-10-29 08:02:07 sync INFO: Deleting 1/20...
2021-10-29 08:02:08 sync INFO: Indexing 4001...
2021-10-29 08:02:08 sync INFO: Applying deletions...
2021-10-29 08:02:09 sync INFO: Deleting 157/343...
2021-10-29 08:02:11 sync INFO: Deleting 42/157...
2021-10-29 08:02:13 sync INFO: Indexing 4501...
2021-10-29 08:02:13 sync INFO: Applying deletions...
2021-10-29 08:02:13 sync INFO: Deleting 50/500...
2021-10-29 08:02:15 sync INFO: Deleting 286/500...
2021-10-29 08:02:18 sync INFO: Indexing 5001...
2021-10-29 08:02:18 sync INFO: Applying deletions...
2021-10-29 08:02:18 sync INFO: Deleting 1/1...
2021-10-29 08:02:20 sync INFO: Deleting 225/499...
2021-10-29 08:02:22 sync INFO: Deleting 457/499...
2021-10-29 08:02:23 sync INFO: Indexing 5501...
2021-10-29 08:02:23 sync INFO: Applying deletions...
2021-10-29 08:02:24 sync INFO: Deleting 127/500...
2021-10-29 08:02:26 sync INFO: Deleting 361/500...
2021-10-29 08:02:28 sync INFO: Indexing 6001...
2021-10-29 08:02:28 sync INFO: Applying deletions...
2021-10-29 08:02:28 sync INFO: Deleting 1/159...
2021-10-29 08:02:30 sync INFO: Deleting 70/146...
2021-10-29 08:02:32 sync INFO: Deleting 145/195...
2021-10-29 08:02:33 sync INFO: Indexing 6501...
2021-10-29 08:02:33 sync INFO: Applying deletions...
2021-10-29 08:02:34 sync INFO: Deleting 97/111...
2021-10-29 08:02:36 sync INFO: Deleting 210/389...
2021-10-29 08:02:38 sync INFO: Indexing 7001...
2021-10-29 08:02:38 sync INFO: Applying deletions...
2021-10-29 08:02:38 sync INFO: Deleting 1/146...
2021-10-29 08:02:41 sync INFO: Deleting 85/354...
2021-10-29 08:02:43 sync INFO: Deleting 325/354...
2021-10-29 08:02:44 sync INFO: Indexing 7501...
2021-10-29 08:02:44 sync INFO: Applying deletions...
2021-10-29 08:02:45 sync INFO: Deleting 97/333...
2021-10-29 08:02:47 sync INFO: Deleting 1/167...
2021-10-29 08:02:49 sync INFO: Indexing 8001...
2021-10-29 08:02:49 sync INFO: Applying deletions...
2021-10-29 08:02:49 sync INFO: Deleting 13/226...
2021-10-29 08:02:51 sync INFO: Deleting 14/274...
2021-10-29 08:02:53 sync INFO: Deleting 253/274...
2021-10-29 08:02:54 sync INFO: Indexing 8501...
2021-10-29 08:02:54 sync INFO: Applying deletions...
2021-10-29 08:02:55 sync INFO: Deleting 142/194...
2021-10-29 08:02:57 sync INFO: Deleting 169/306...
2021-10-29 08:02:59 sync INFO: Indexing 9001...
2021-10-29 08:02:59 sync INFO: Applying deletions...
2021-10-29 08:02:59 sync INFO: Deleting 25/312...
2021-10-29 08:03:01 sync INFO: Deleting 260/312...
2021-10-29 08:03:01 manager INFO: Syncing...
2021-10-29 08:03:03 sync INFO: Deleting 177/188...
2021-10-29 08:03:04 sync INFO: Indexing 9501...
2021-10-29 08:03:04 sync INFO: Applying deletions...
2021-10-29 08:03:05 sync INFO: Deleting 133/376...
2021-10-29 08:03:07 sync INFO: Deleting 368/376...
2021-10-29 08:03:09 sync INFO: Indexing 10001...
2021-10-29 08:03:09 sync INFO: Applying deletions...
2021-10-29 08:03:09 sync INFO: Deleting 1/211...
2021-10-29 08:03:11 sync INFO: Deleting 15/206...
2021-10-29 08:03:13 sync INFO: Deleting 33/83...
2021-10-29 08:03:14 sync INFO: Indexing 10501...
2021-10-29 08:03:14 sync INFO: Applying deletions...
2021-10-29 08:03:15 sync INFO: Deleting 90/500...
2021-10-29 08:03:17 sync INFO: Deleting 325/500...
2021-10-29 08:03:20 sync INFO: Indexing 11001...
2021-10-29 08:03:20 sync INFO: Applying deletions...
2021-10-29 08:03:20 sync INFO: Deleting 1/7...
2021-10-29 08:03:22 sync INFO: Deleting 221/493...
2021-10-29 08:03:24 sync INFO: Deleting 451/493...
2021-10-29 08:03:25 sync INFO: Indexing 11501...
2021-10-29 08:03:25 sync INFO: Applying deletions...
2021-10-29 08:03:26 sync INFO: Deleting 1/404...
2021-10-29 08:03:28 sync INFO: Deleting 241/404...
2021-10-29 08:03:30 sync INFO: Indexing 12001...
2021-10-29 08:03:30 sync INFO: Applying deletions...
2021-10-29 08:03:30 sync INFO: Deleting 1/27...
2021-10-29 08:03:32 sync INFO: Deleting 205/473...
2021-10-29 08:03:34 sync INFO: Deleting 436/473...
2021-10-29 08:03:35 sync INFO: Indexing 12501...
2021-10-29 08:03:35 sync INFO: Applying deletions...
2021-10-29 08:03:36 sync INFO: Deleting 61/455...
2021-10-29 08:03:38 sync INFO: Deleting 289/455...
2021-10-29 08:03:40 sync INFO: Indexing 13001...
2021-10-29 08:03:40 sync INFO: Applying deletions...
2021-10-29 08:03:40 sync INFO: Deleting 1/500...
2021-10-29 08:03:42 sync INFO: Deleting 234/500...
2021-10-29 08:03:44 sync INFO: Deleting 465/500...
2021-10-29 08:03:45 sync INFO: Indexing 13501...
2021-10-29 08:03:45 sync INFO: Applying deletions...
2021-10-29 08:03:46 sync INFO: Deleting 22/106...
2021-10-29 08:03:48 sync INFO: Deleting 139/304...
2021-10-29 08:03:51 sync INFO: Indexing 14001...
2021-10-29 08:03:51 sync INFO: Applying deletions...
2021-10-29 08:03:51 sync INFO: Deleting 1/119...
2021-10-29 08:03:53 sync INFO: Deleting 112/259...
2021-10-29 08:03:55 sync INFO: Deleting 77/122...
2021-10-29 08:03:56 sync INFO: Indexing 14501...
2021-10-29 08:03:56 sync INFO: Applying deletions...
2021-10-29 08:03:57 sync INFO: Deleting 121/450...
2021-10-29 08:03:59 sync INFO: Deleting 361/450...
2021-10-29 08:04:01 sync INFO: Indexing 15001...
2021-10-29 08:04:01 sync INFO: Applying deletions...
2021-10-29 08:04:01 sync INFO: Deleting 1/500...
2021-10-29 08:04:03 sync INFO: Deleting 241/500...
2021-10-29 08:04:05 sync INFO: Deleting 476/500...
2021-10-29 08:04:06 sync INFO: Indexing 15501...
2021-10-29 08:04:06 sync INFO: Applying deletions...
2021-10-29 08:04:07 sync INFO: Deleting 133/500...
2021-10-29 08:04:09 sync INFO: Deleting 371/500...
2021-10-29 08:04:11 sync INFO: Indexing 16001...
2021-10-29 08:04:11 sync INFO: Applying deletions...
2021-10-29 08:04:11 sync INFO: Deleting 36/500...
2021-10-29 08:04:13 sync INFO: Deleting 265/500...
2021-10-29 08:04:16 sync INFO: Indexing 16501...
2021-10-29 08:04:16 sync INFO: Applying deletions...
2021-10-29 08:04:16 sync INFO: Deleting 1/500...
2021-10-29 08:04:18 sync INFO: Deleting 238/500...
2021-10-29 08:04:20 sync INFO: Deleting 469/500...
2021-10-29 08:04:21 sync INFO: Indexing 17001...
2021-10-29 08:04:21 sync INFO: Applying deletions...
2021-10-29 08:04:22 sync INFO: Deleting 121/500...
2021-10-29 08:04:24 sync INFO: Deleting 359/500...
2021-10-29 08:04:26 sync INFO: Indexing 17501...
2021-10-29 08:04:26 sync INFO: Applying deletions...
2021-10-29 08:04:26 sync INFO: Deleting 1/323...
2021-10-29 08:04:28 sync INFO: Deleting 239/323...
2021-10-29 08:04:30 sync INFO: Deleting 136/161...
2021-10-29 08:04:31 sync INFO: Indexing 18001...
2021-10-29 08:04:31 sync INFO: Applying deletions...
2021-10-29 08:04:32 sync INFO: Deleting 13/333...
2021-10-29 08:04:34 sync INFO: Deleting 247/333...
2021-10-29 08:04:36 sync INFO: Indexing 18501...
2021-10-29 08:04:36 sync INFO: Applying deletions...
2021-10-29 08:04:36 sync INFO: Deleting 1/372...
2021-10-29 08:04:38 sync INFO: Deleting 241/372...
2021-10-29 08:04:40 sync INFO: Deleting 97/128...
2021-10-29 08:04:41 sync INFO: Indexing 19001...
2021-10-29 08:04:41 sync INFO: Applying deletions...
2021-10-29 08:04:42 sync INFO: Deleting 119/365...
2021-10-29 08:04:44 sync INFO: Deleting 349/365...
2021-10-29 08:04:46 sync INFO: Indexing 19501...
2021-10-29 08:04:46 sync INFO: Applying deletions...
2021-10-29 08:04:46 sync INFO: Deleting 1/121...
2021-10-29 08:04:49 sync INFO: Deleting 109/379...
2021-10-29 08:04:51 sync INFO: Deleting 349/379...
2021-10-29 08:04:51 sync INFO: Indexing 20001...
2021-10-29 08:04:51 sync INFO: Applying deletions...
2021-10-29 08:04:53 sync INFO: Deleting 149/500...
2021-10-29 08:04:55 sync INFO: Deleting 385/500...
2021-10-29 08:04:56 sync INFO: Indexing 20501...
2021-10-29 08:04:56 sync INFO: Applying deletions...
2021-10-29 08:04:57 sync INFO: Deleting 61/500...
2021-10-29 08:04:59 sync INFO: Deleting 298/500...
2021-10-29 08:05:01 sync INFO: Indexing 21001...
2021-10-29 08:05:01 sync INFO: Applying deletions...
2021-10-29 08:05:02 sync INFO: Deleting 1/170...
2021-10-29 08:05:04 sync INFO: Deleting 47/327...
2021-10-29 08:05:06 sync INFO: Deleting 277/327...
2021-10-29 08:05:07 sync INFO: Indexing 21501...
2021-10-29 08:05:07 sync INFO: Applying deletions...
2021-10-29 08:05:08 sync INFO: Deleting 109/404...
2021-10-29 08:05:10 sync INFO: Deleting 344/404...
2021-10-29 08:05:12 sync INFO: Indexing 22001...
2021-10-29 08:05:12 sync INFO: Applying deletions...
2021-10-29 08:05:12 sync INFO: Deleting 1/500...
2021-10-29 08:05:14 sync INFO: Deleting 241/500...
2021-10-29 08:05:16 sync INFO: Deleting 477/500...
2021-10-29 08:05:17 sync INFO: Indexing 22501...
2021-10-29 08:05:17 sync INFO: Applying deletions...
2021-10-29 08:05:18 sync INFO: Deleting 145/490...
2021-10-29 08:05:20 sync INFO: Deleting 379/490...
2021-10-29 08:05:22 sync INFO: Indexing 23001...
2021-10-29 08:05:22 sync INFO: Applying deletions...
2021-10-29 08:05:22 sync INFO: Deleting 37/500...
2021-10-29 08:05:24 sync INFO: Deleting 277/500...
2021-10-29 08:05:27 sync INFO: Indexing 23501...
2021-10-29 08:05:27 sync INFO: Applying deletions...
2021-10-29 08:05:27 sync INFO: Deleting 1/463...
2021-10-29 08:05:29 sync INFO: Deleting 241/463...
2021-10-29 08:05:31 sync INFO: Deleting 1/37...
2021-10-29 08:05:32 sync INFO: Indexing 24001...
2021-10-29 08:05:32 sync INFO: Applying deletions...
2021-10-29 08:05:33 sync INFO: Deleting 111/500...
2021-10-29 08:05:35 sync INFO: Deleting 349/500...
2021-10-29 08:05:37 sync INFO: Indexing 24501...
2021-10-29 08:05:37 sync INFO: Applying deletions...
2021-10-29 08:05:37 sync INFO: Deleting 1/78...
2021-10-29 08:05:39 sync INFO: Deleting 13/292...
2021-10-29 08:05:41 sync INFO: Deleting 244/292...
2021-10-29 08:05:42 sync INFO: Indexing 25001...
2021-10-29 08:05:42 sync INFO: Applying deletions...
2021-10-29 08:05:43 sync INFO: Deleting 126/339...
2021-10-29 08:05:45 sync INFO: Deleting 1/160...
2021-10-29 08:05:47 sync INFO: Indexing 25501...
2021-10-29 08:05:47 sync INFO: Applying deletions...
2021-10-29 08:05:47 sync INFO: Deleting 1/500...
2021-10-29 08:05:49 sync INFO: Deleting 239/500...
2021-10-29 08:05:51 sync INFO: Deleting 469/500...
2021-10-29 08:05:52 sync INFO: Indexing 26001...
2021-10-29 08:05:52 sync INFO: Applying deletions...
2021-10-29 08:05:53 sync INFO: Deleting 141/500...
2021-10-29 08:05:55 sync INFO: Deleting 373/500...
2021-10-29 08:05:57 sync INFO: Indexing 26501...
2021-10-29 08:05:57 sync INFO: Applying deletions...
2021-10-29 08:05:57 sync INFO: Deleting 25/500...
2021-10-29 08:05:59 sync INFO: Deleting 265/500...
2021-10-29 08:06:02 sync INFO: Indexing 27001...
2021-10-29 08:06:02 sync INFO: Applying deletions...
2021-10-29 08:06:02 sync INFO: Deleting 1/500...
2021-10-29 08:06:04 sync INFO: Deleting 241/500...
2021-10-29 08:06:06 sync INFO: Deleting 477/500...
2021-10-29 08:06:07 sync INFO: Indexing 27222...
2021-10-29 08:06:07 sync INFO: Applying deletions...
2021-10-29 08:06:08 sync INFO: Deleting 145/210...
2021-10-29 08:06:09 sync INFO: Up to date
2021-10-29 08:06:09 manager INFO: Up to date
2021-10-29 08:06:13 sync INFO: Syncing ↑ 1/2
2021-10-29 08:06:15 sync INFO: Syncing ↑ 1/95
2021-10-29 08:06:15 manager INFO: Syncing...
2021-10-29 08:06:17 sync INFO: Syncing ↑ 38/95
2021-10-29 08:06:20 sync INFO: Syncing ↑ 81/95
2021-10-29 08:06:23 sync INFO: Syncing ↑ 93/95
2021-10-29 08:06:25 manager INFO: Up to date
2021-10-29 08:06:25 sync INFO: Fetching remote changes
2021-10-29 08:06:25 sync INFO: Indexing 7...
2021-10-29 08:06:25 sync INFO: Syncing ↓ 1/7
2021-10-29 08:06:25 sync INFO: Up to date
2021-10-29 08:06:25 manager INFO: Up to date
2021-10-29 09:01:59 manager INFO: Shutting down threads...
2021-10-29 09:01:59 sync INFO: Sync aborted
Ah, damn, this should have been fixed in #472. @frioux, could you go through the trouble shooting steps in https://github.com/SamSchott/maestral/issues/452#issuecomment-944907916 and post what you get?
I might be able to get around to it at some point but no ETA.
Closing since there were multiple improvements to the sync logic since and there are no more user reports of this issue.
I got bit by it one month ago 😕 I added a new device and installed maestral … hundreds of files were removed. I noticed 3.5 weeks later … just close enough I was able to undelete them via the DBx website. Now I figured out another problem: Many files are 0 bytes size … so they were never deleted.