Changeset 52912 in webkit


Ignore:
Timestamp:
Jan 7, 2010 2:22:40 AM (14 years ago)
Author:
abarth@webkit.org
Message:

2010-01-07 Adam Barth <abarth@webkit.org>

Reviewed by Maciej Stachowiak.

Don't print a redundant message when confirming a diff
https://bugs.webkit.org/show_bug.cgi?id=33315

Instead of saying "ERROR: User declined" we should just exit because
the use knows they just declined!

  • Scripts/webkitpy/steps/confirmdiff.py:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r52910 r52912  
     12010-01-07  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Maciej Stachowiak.
     4
     5        Don't print a redundant message when confirming a diff
     6        https://bugs.webkit.org/show_bug.cgi?id=33315
     7
     8        Instead of saying "ERROR: User declined" we should just exit because
     9        the use knows they just declined!
     10
     11        * Scripts/webkitpy/steps/confirmdiff.py:
     12
    1132010-01-07  Adam Barth  <abarth@webkit.org>
    214
  • trunk/WebKitTools/Scripts/webkitpy/steps/confirmdiff.py

    r52714 r52912  
    4545        self._tool.user.page(diff)
    4646        if not self._tool.user.confirm("Was that diff correct?"):
    47             error("User declined to continue.")
     47            exit(1)
Note: See TracChangeset for help on using the changeset viewer.