Skip to content

Commit

Permalink
fixed a py2vs3 bug in cache
Browse files Browse the repository at this point in the history
  • Loading branch information
bmcfee committed Aug 17, 2016
1 parent 442a169 commit a3fbbf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion librosa/cache.py
Expand Up @@ -16,7 +16,7 @@ class CacheManager(Memory):
'''

def __init__(self, cachedir, level=10, **kwargs):
super().__init__(cachedir, **kwargs)
super(CacheManager, self).__init__(cachedir, **kwargs)
# The level parameter controls which data we cache
# smaller numbers mean less caching
self.level = level
Expand Down

0 comments on commit a3fbbf8

Please sign in to comment.