forked from github/pelican
use correct CachingGenerator class in super() call
This was a leftover from code moving in c1324b0.
Detected by pylint.
This commit is contained in:
parent
cd35e713e0
commit
ad6dc3f8ba
1 changed files with 1 additions and 1 deletions
|
|
@ -176,7 +176,7 @@ class CachingGenerator(Generator, FileStampDataCacher):
|
|||
def _get_file_stamp(self, filename):
|
||||
'''Get filestamp for path relative to generator.path'''
|
||||
filename = os.path.join(self.path, filename)
|
||||
return super(Generator, self)._get_file_stamp(filename)
|
||||
return super(CachingGenerator, self)._get_file_stamp(filename)
|
||||
|
||||
|
||||
class _FileLoader(BaseLoader):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue