Comment 5 for bug 1076343

Revision history for this message
Curtis Hovey (sinzui) wrote : Re: project overview produce a timed out error

Launchpad does not download licenses. It does not want licenses. It wants to tell contributors what the terms (because many will not contribute if they believe the terms are unfair) are and allow a Registry Admin to verify if the project qualifies for free hosting.

Your browser is freezing for the same, reason as the front page, that data needs to be loaded. This python script may fix the issue:

#!/usr/bin/python
from launchpadlib.launchpad import Launchpad
lp = Launchpad.login_with(
    'purge-license-info', service_root='https://api.launchpad.net',
    version='devel')
project = lp.projects['abstrasy']
project.license_info = 'URL TO LICENSE'
project.lp_save()