Fix feed.items.append since pep8
The underscore naming convention was not yet applied in that function
This commit is contained in:
		@@ -273,8 +273,8 @@ class FeedList(object):
 | 
			
		||||
            return new
 | 
			
		||||
 | 
			
		||||
        for key in self.childClass.__dict__:
 | 
			
		||||
            if key[:3] == 'set':
 | 
			
		||||
                attr = key[3:].lower()
 | 
			
		||||
            if key.startswith('set_'):
 | 
			
		||||
                attr = key[4:]
 | 
			
		||||
                if hasattr(cousin, attr):
 | 
			
		||||
                    setattr(new, attr, getattr(cousin, attr))
 | 
			
		||||
                elif attr in cousin:
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user