Skip to content

Commit

Permalink
dvc: append slash at the end for dir path_info
Browse files Browse the repository at this point in the history
  • Loading branch information
skshetry committed Nov 28, 2019
1 parent 5e2150d commit 0c08c09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dvc/remote/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def get_checksum(self, path_info):
return checksum

if self.isdir(path_info):
checksum = self.get_dir_checksum(path_info)
checksum = self.get_dir_checksum(path_info / "")
else:
checksum = self.get_file_checksum(path_info)

Expand Down

0 comments on commit 0c08c09

Please sign in to comment.