Skip to content

Commit

Permalink
NXDRIVE-471: Fix logs when synchronizing a remote move (were making W…
Browse files Browse the repository at this point in the history
…indows build fail)
  • Loading branch information
ataillefer committed Nov 10, 2015
1 parent 5995d08 commit f85cec5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nuxeo-drive-client/nxdrive/engine/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ def _synchronize_remotely_modified(self, doc_pair, local_client, remote_client):
moved_name = doc_pair.remote_name if is_renaming else doc_pair.local_name
# NXDRIVE-471: log
old_path = doc_pair.local_path
new_path = local_client._abspath(new_parent_pair.local_path + '/' + moved_name)
new_path = new_parent_pair.local_path + '/' + moved_name
log.debug("DOC_PAIR(%r): old_path[%d][%r]: %s, new_path[%d][%r]: %s",
doc_pair, local_client.exists(old_path), local_client.get_remote_id(old_path), old_path,
local_client.exists(new_path), local_client.get_remote_id(new_path), new_path)
Expand Down

0 comments on commit f85cec5

Please sign in to comment.