We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c2574ee + 57a0307 commit 7f32d52Copy full SHA for 7f32d52
dvc/__init__.py
@@ -5,7 +5,7 @@
5
"""
6
import os
7
8
-VERSION = '0.9.3'
+VERSION = '0.9.4'
9
10
if os.getenv('APPVEYOR_REPO_TAG', '').lower() != 'true' and os.getenv('TRAVIS_TAG', '') == '':
11
# Dynamically update version
dvc/cloud/base.py
@@ -75,7 +75,7 @@ def storage_prefix(self):
75
def cache_file_key(self, fname):
76
""" Key of a file within the bucket """
77
relpath = os.path.relpath(fname, self._cloud_settings.cache.cache_dir)
78
- relpath.replace('\\', '/')
+ relpath = relpath.replace('\\', '/')
79
return '{}/{}'.format(self.storage_prefix, relpath).strip('/')
80
81
@staticmethod
0 commit comments