~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/scripts/bugimport.py

[r=wallyworld][no-qa] Rollback branch
        bug-subscribers-after-private-475775 due to a misinterpretation
        of the required functionality

Show diffs side-by-side

added added

removed removed

Lines of Context:
328
328
            self.createAttachments(bug, msg, commentnode)
329
329
 
330
330
        # set up bug
331
 
        private = get_value(bugnode, 'private') == 'True'
332
 
        security_related = get_value(bugnode, 'security_related') == 'True'
333
 
        bug.setPrivacyAndSecurityRelated(private, security_related, owner)
 
331
        bug.setPrivate(get_value(bugnode, 'private') == 'True', owner)
 
332
        bug.setSecurityRelated(
 
333
            get_value(bugnode, 'security_related') == 'True')
334
334
        bug.name = get_value(bugnode, 'nickname')
335
335
        description = get_value(bugnode, 'description')
336
336
        if description: