def validate_link()

in scripts/sanity_check.py [0:0]


    def validate_link(self, link):
        '''
        Make sure the github repo exists
        '''
        try:
            urlopen(link)
        except HTTPError:
            raise ValueError('{} is not valid url in {}'
                             .format(link, self.filename))