Skip to content
Snippets Groups Projects
Commit 859858cf authored by Payno's avatar Payno
Browse files

[RSyncManager] Remove raising error when can't remove empty folders and only keep log error.

parent a6d052a5
No related branches found
No related tags found
No related merge requests found
...@@ -254,8 +254,7 @@ class _RSyncThread(OWClient, qt.QThread): ...@@ -254,8 +254,7 @@ class _RSyncThread(OWClient, qt.QThread):
mess = 'fail to remove file on %s.' % self._source mess = 'fail to remove file on %s.' % self._source
mess += 'Synchronisation might have failed' mess += 'Synchronisation might have failed'
logger.error(mess) logger.error(mess)
raise OSError(mess)
self.sigSyncThreadFinished.emit(self._source, self._target) self.sigSyncThreadFinished.emit(self._source, self._target)
@staticmethod @staticmethod
......
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