Comment 3 for bug 896626

Revision history for this message
Brian Murray (brian-murray) wrote :

It's probably the title of the bug report that is an issue here.

From apport/crashdb_impl/launchpad.py:

        args = {}
        title = report.get('Title', report.standard_title())
        if title:
            args['field.title'] = title

 ...

        if not project:
            if 'SourcePackage' in report:
                return 'https://bugs.%s/%s/+source/%s/+filebug/%s?%s' % (
                    hostname, self.distro, report['SourcePackage'], handle, urllib.urlencode(args))
            else:
                return 'https://bugs.%s/%s/+filebug/%s?%s' % (
                    hostname, self.distro, handle, urllib.urlencode(args))
        else:
            return 'https://bugs.%s/%s/+filebug/%s?%s' % (
                hostname, project, handle, urllib.urlencode(args))