Skip to content

Commit

Permalink
dvc: properly join paths for push/pull progress bar
Browse files Browse the repository at this point in the history
Fixes iterative#1095

Signed-off-by: Ruslan Kuprieiev <[email protected]>
  • Loading branch information
efiop committed Sep 21, 2018
1 parent 1d654d0 commit 69bb753
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dvc/remote/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,8 +443,8 @@ def _collect(self, checksum_infos, push=False):
for i in self.load_dir_cache(md5):
if info.get('branch'):
i['branch'] = info['branch']
i[self.PARAM_PATH] = posixpath.join(info[self.PARAM_PATH],
i[self.PARAM_RELPATH])
i[self.PARAM_PATH] = os.path.join(info[self.PARAM_PATH],
i[self.PARAM_RELPATH])
collected.append(i.copy())

collected.extend(checksum_infos)
Expand Down

0 comments on commit 69bb753

Please sign in to comment.