Merge pull request #8 from ngulden/master
Fixed NameError: global name 'updated' is not defined
This commit is contained in:
commit
875fe86a9d
1 changed files with 1 additions and 1 deletions
|
@ -444,7 +444,7 @@ class FeedGenerator(object):
|
||||||
:param lastBuildDate: The modification date.
|
:param lastBuildDate: The modification date.
|
||||||
:returns: Modification date as datetime.datetime
|
:returns: Modification date as datetime.datetime
|
||||||
'''
|
'''
|
||||||
return updated( lastBuildDate )
|
return self.updated( lastBuildDate )
|
||||||
|
|
||||||
|
|
||||||
def author(self, author=None, replace=False, **kwargs):
|
def author(self, author=None, replace=False, **kwargs):
|
||||||
|
|
Loading…
Reference in a new issue