~jcsackett/charmworld/bac-tag-constraints

« back to all changes in this revision

Viewing changes to charmworld/jobs/lp.py

  • Committer: Aaron Bentley
  • Date: 2013-08-12 20:10:11 UTC
  • mto: This revision was merged to the branch mainline in revision 345.
  • Revision ID: aaron@canonical.com-20130812201011-tym7vj10twzic1mf
Remove doctype attribute from charms and bundles.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
            continue
66
66
 
67
67
        data['branch_deleted'] = False
68
 
        data['doctype'] = 'charm'
69
68
        charms.append(data)
70
69
    return charms, baskets
71
70
 
84
83
        charm['promulgated'] = False
85
84
        charm['distro_series'] = []
86
85
        charm['branch_deleted'] = True
87
 
        charm['doctype'] = 'charm'
88
86
        yield charm
89
87
 
90
88