Changeset - e01c27ea3e27
[Not reviewed]
0 1 0
Ben Sturmfels (bsturmfels) - 13 days ago 2024-04-24 07:38:22
ben@sturm.com.au
Fix lint warnings
1 file changed with 5 insertions and 3 deletions:
0 comments (0 inline, 0 general)
conservancy/podjango/feeds.py
Show inline comments
...
 
@@ -223,9 +223,11 @@ class CastFeed(CastFeedBase):
 
    def item_categories(self, item):
 
        return ('Technology',)
 

	
 
    def copyright_holder(self): return "Software Freedom Conservancy"
 
    def copyright_holder(self):
 
        return "Software Freedom Conservancy"
 

	
 
    def license_no_html(self): return "Licensed under a Creative Commons Attribution-Share Alike 3.0 USA License."
 
    def license_no_html(self):
 
        return "Licensed under a Creative Commons Attribution-Share Alike 3.0 USA License."
 

	
 
    def feed_extra_kwargs(self, obj):
 
        return for_podcast_feed_extra_kwargs(self, obj)
...
 
@@ -235,7 +237,7 @@ class CastFeed(CastFeedBase):
 

	
 
# FIXME:
 
# GUEST NAME GOES HERE!!!
 
#<itunes:author>
 
# <itunes:author>
 
#     If applicable, at the item level, this tag can contain information
 
#     about the person(s) featured on a specific episode.
 

	
0 comments (0 inline, 0 general)