[Webkit-unassigned] [Bug 26715] bugzilla-tool should automate rollouts

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Aug 4 11:33:43 PDT 2009


https://bugs.webkit.org/show_bug.cgi?id=26715





--- Comment #10 from Eric Seidel <eric at webkit.org>  2009-08-04 11:33:41 PDT ---
Some testing code for later:

    def _parse_revision_to_commit_mappings(self, stderr):
        revision_to_commit_mapping = {}
        for line in stderr.split_lines():
            match = line.match("^(?P<revision>r\d+) = (?P<commit_id>\w+)$")
            if match:
                revision_to_commit_mapping[match.group('revision')] =
match.group('commit_id')
        return revision_to_commit_mapping

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list