Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…erbutler into feature/folder-file-ops-revamp
  • Loading branch information
AddisonSchiller committed Oct 18, 2017
2 parents c09c80f + 3d9ac2f commit 8e9db9d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
ChangeLog
*********

0.34.1 (2017-10-18)
===================
- Fix: Don't crash when a file on Google Drive is missing an md5 in its metadata. This occurs
for non-exportable files like Google Maps, Google Forms, etc.

0.34.0 (2017-09-29)
===================
- ANNOUNCEMENT! Sadly, the WaterButler v0 API is now *undeprecated*. We've discovered that the
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.34.0'
__version__ = '0.34.1'
__import__('pkg_resources').declare_namespace(__name__)
2 changes: 1 addition & 1 deletion waterbutler/providers/googledrive/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def extra(self):
else:
if not hasattr(ret, 'hashes'):
ret['hashes'] = {}
ret['hashes']['md5'] = self.raw['md5Checksum']
ret['hashes']['md5'] = self.raw.get('md5Checksum') # no md5 for non-exportable file

return ret

Expand Down

0 comments on commit 8e9db9d

Please sign in to comment.