Skip to content
Snippets Groups Projects
Commit 5ca9fed0 authored by Payno's avatar Payno
Browse files

[RSyncManager] Remove raising error if can't copy, go for an error log only.

parent 859858cf
No related branches found
No related tags found
No related merge requests found
......@@ -109,7 +109,8 @@ class RSyncManager(OWClient, qt.QObject):
else:
err = 'Unable to copy, %s is not a folder, neither than %s' % (
target, os.path.dirname(target.rstrip(os.sep)))
raise ValueError(err)
logger.error(err)
return
if block is True:
# wait until al thread are ended
while (source, target) in self.rsyncQueues:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment