Changeset 51404 in webkit


Ignore:
Timestamp:
Nov 25, 2009 6:25:31 PM (14 years ago)
Author:
abarth@webkit.org
Message:

2009-11-25 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

bugzilla-tool should have a mark-fixed command
https://bugs.webkit.org/show_bug.cgi?id=31853

Pretty simple stuff.

  • Scripts/modules/commands/upload.py:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r51403 r51404  
     12009-11-25  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        bugzilla-tool should have a mark-fixed command
     6        https://bugs.webkit.org/show_bug.cgi?id=31853
     7
     8        Pretty simple stuff.
     9
     10        * Scripts/modules/commands/upload.py:
     11
    1122009-11-25  Eric Seidel  <eric@webkit.org>
    213
  • trunk/WebKitTools/Scripts/modules/commands/upload.py

    r51403 r51404  
    171171
    172172
     173class MarkFixed(Command):
     174    name = "mark-fixed"
     175    show_in_main_help = False
     176    def __init__(self):
     177        Command.__init__(self, "Mark the specified bug as fixed", "BUG_ID REASON")
     178
     179    def execute(self, options, args, tool):
     180        tool.bugs.close_bug_as_fixed(args[0], args[1])
     181
     182
    173183class CreateBug(Command):
    174184    name = "create-bug"
Note: See TracChangeset for help on using the changeset viewer.