Commit 53fe3c91 authored by Taddeus Kroes's avatar Taddeus Kroes

Fixed broken constructor.

parent a09d7dcb
......@@ -28,7 +28,7 @@ def seconds_to_datetime(seconds):
return datetime(*gmtime(seconds)[:7])
class Cache:
class Cache(object):
"""
A Cache instance represents a single file in the cache directory, which is
a concatenation of the file list.
......
......@@ -54,7 +54,7 @@ def separate_imports(content):
class Importer(Cache):
def __init__(self, files=[], extension=None, **kwargs):
Cache.__init__(self, **kwargs)
super(Importer, self).__init__(**kwargs)
self.aliases = {}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment