File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
apps/djangocms_blog_customizations Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -11,22 +11,16 @@ class LatestEntriesFeed(DjangoCMSBlogLatestEntriesFeed):
1111 feed_type = Rss201rev2Feed
1212 feed_items_number = get_setting ("FEED_LATEST_ITEMS" )
1313
14- print (f"CUSTOM FEED | FEED_LATEST_ITEMS: { feed_items_number } " )
15-
1614 def __call__ (self , request , * args , ** kwargs ):
1715 namespace = get_setting ("AUTO_NAMESPACE" )
1816
1917 self .request = request
2018 self .namespace = get_setting ("AUTO_NAMESPACE" )
2119 self .config = BlogConfig .objects .get (namespace = namespace )
2220
23- print (f"CUSTOM FEED | NAMESPACE: { self .namespace } , CONFIG: { self .config } " )
24-
2521 return super ().__call__ (request , * args , ** kwargs )
2622
2723 def items (self ):
2824 items = super ().items ()
2925
30- print (f"CUSTOM FEED | FEED ITEMS: { items } " )
31-
3226 return items
You can’t perform that action at this time.
0 commit comments