Fixes return on FeedGenerator.copyright()

This commit is contained in:
George Griffin 2014-05-05 00:54:02 -04:00
parent c2197dd368
commit cdaef2dd4b

View file

@ -737,7 +737,7 @@ class FeedGenerator(object):
:param copyright: The copyright notice.
:returns: The copyright notice.
'''
return rights( copyright )
return self.rights( copyright )
def subtitle(self, subtitle=None):