Skip to content

Commit

Permalink
Merge branch 'hotfix/0.8.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisseto committed Jul 21, 2015
2 parents ce078b2 + 3647bc6 commit 663b745
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions tests/providers/dataverse/test_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,7 @@ def test_metadata(self, provider, native_dataset_metadata):
assert result[0].name == 'UnZip.java'
assert result[0].path == '/19'
assert result[0].extra['fileId'] == '19'
assert result[0].materialized_path == '/UnZip.java'

@async
@pytest.mark.aiohttpretty
Expand Down
2 changes: 1 addition & 1 deletion waterbutler/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '0.8.6'
__version__ = '0.8.7'
__import__('pkg_resources').declare_namespace(__name__)
4 changes: 4 additions & 0 deletions waterbutler/providers/dataverse/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ def name(self):
def path(self):
return self.build_path(self.file_id)

@property
def materialized_path(self):
return '/' + self.name

@property
def size(self):
return None
Expand Down

0 comments on commit 663b745

Please sign in to comment.