diff options
author | ghendricks%novell.com <> | 2009-05-21 01:09:55 +0200 |
---|---|---|
committer | ghendricks%novell.com <> | 2009-05-21 01:09:55 +0200 |
commit | e39a1db4115cfd721fa65c746e7699e79cda87ae (patch) | |
tree | d993a0a28a9d277d37ac5f0173810e3d48f93d7e /contrib/gnatsparse | |
parent | e82fe9ae884fa439494a4755cfcc218481ae094d (diff) | |
download | bugzilla-e39a1db4115cfd721fa65c746e7699e79cda87ae.tar.gz bugzilla-e39a1db4115cfd721fa65c746e7699e79cda87ae.tar.xz |
Bug 493090 - Product disallownew should be converted to isactive
patch by ghendricks r=mkanat a=mkanat
Diffstat (limited to 'contrib/gnatsparse')
-rwxr-xr-x | contrib/gnatsparse/gnatsparse.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/gnatsparse/gnatsparse.py b/contrib/gnatsparse/gnatsparse.py index c70993493..21ec7a840 100755 --- a/contrib/gnatsparse/gnatsparse.py +++ b/contrib/gnatsparse/gnatsparse.py @@ -144,9 +144,9 @@ def write_non_bug_tables(): # Insert the products print >>outfile, "\ninsert into products (" - print >>outfile, " product, description, milestoneurl, disallownew," + print >>outfile, " product, description, milestoneurl, isactive," print >>outfile, " defaultmilestone, votestoconfirm) values (" - print >>outfile, " '%s', '%s', '%s', 0, '%s', 1);" % (product, + print >>outfile, " '%s', '%s', '%s', 1, '%s', 1);" % (product, productdesc, milestoneurl, defaultmilestone) |