Code Duplication    Length = 12-13 lines in 2 locations

comics.py 2 locations

@@ 2942-2954 (lines=13) @@
2939
    name = 'stupid'
2940
    long_name = "Everything's Stupid"
2941
    url = 'http://everythingsstupid.net'
2942
2943
2944
class TheIsmComics(GenericWordPressInkblot):
2945
    """Class to retrieve The Ism Comics."""
2946
    # Also on https://tapastic.com/series/TheIsm (?)
2947
    name = 'theism'
2948
    long_name = "The Ism"
2949
    url = 'http://www.theism-comics.com'
2950
2951
2952
class WoodenPlankStudios(GenericWordPressInkblot):
2953
    """Class to retrieve Wooden Plank Studios comics."""
2954
    name = 'woodenplank'
2955
    long_name = 'Wooden Plank Studios'
2956
    url = 'http://woodenplankstudios.com'
2957
@@ 2650-2661 (lines=12) @@
2647
2648
2649
class CommitStripEn(GenericCommitStrip):
2650
    """Class to retrieve Commit Strips in English."""
2651
    name = 'commit_en'
2652
    long_name = 'Commit Strip (En)'
2653
    url = 'http://www.commitstrip.com/en'
2654
    first_url = 'http://www.commitstrip.com/en/2012/02/22/interview/'
2655
2656
2657
class GenericBoumerie(GenericNavigableComic):
2658
    """Generic class to retrieve Boumeries comics in different languages."""
2659
    get_first_comic_link = get_a_navi_navifirst
2660
    get_navi_link = get_link_rel_next
2661
    date_format = NotImplemented
2662
    lang = NotImplemented
2663
2664
    @classmethod