Skip to content

Commit

Permalink
py34 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mrocklin committed Aug 4, 2015
1 parent af95337 commit e388ed8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dask/dataframe/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def cache(self, cache=Cache):
cache = cache()

# Evaluate and store in cache
name = 'cache' + uuid.uuid1().get_hex()
name = 'cache' + uuid.uuid1().hex
dsk = dict(((name, i), (setitem, cache, (tuple, list(key)), key))
for i, key in enumerate(self._keys()))
self._get(merge(dsk, self.dask), list(dsk.keys()))
Expand Down

0 comments on commit e388ed8

Please sign in to comment.