calibre just picks the first or last (dont remember) subclass of BasicNewsRecipe it finds in the module. I'd suggest declaring your sub recipes withing the AllBlog class, like this
Code:
class AllBlogs(BasicNewsRecipe):
class Blog1(BasicNewsRecipe):
....
and refer of Blog1 as
AllBlogs.Blog1