~abentley/lp-dev-utils/ab-logging

« back to all changes in this revision

Viewing changes to disable-projects.py

  • Committer: Curtis Hovey
  • Date: 2010-01-02 19:32:28 UTC
  • Revision ID: sinzui.is@verizon.net-20100102193228-nuv8l3h0ruwtnug2
Save point for review scripts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
113
113
                    print ("ah, it is owned by a team, skipping.  Use --force "
114
114
                           "to disable anyway.")
115
115
                    return
116
 
            self.send_email(proj, owner)
 
116
            try:
 
117
                self.send_email(proj, owner)
 
118
            except:
 
119
                pass
117
120
            proj.active = False
118
121
            proj.license_reviewed = True
119
122
            proj.lp_save()