| Index: third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/prettydiff.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/prettydiff.py b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/prettydiff.py
|
| index 66a06a69eab02a149aa7733a515cbcb48178aa0f..4d41282094f2b1971403e8988977da7b32d2bc22 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/prettydiff.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/prettydiff.py
|
| @@ -27,7 +27,7 @@
|
| # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
| from webkitpy.tool.commands.abstractsequencedcommand import AbstractSequencedCommand
|
| -from webkitpy.tool import steps
|
| +from webkitpy.tool.steps.confirmdiff import ConfirmDiff
|
|
|
|
|
| class PrettyDiff(AbstractSequencedCommand):
|
| @@ -35,5 +35,5 @@ class PrettyDiff(AbstractSequencedCommand):
|
| help_text = "Shows the pretty diff in the default browser"
|
| show_in_main_help = True
|
| steps = [
|
| - steps.ConfirmDiff,
|
| + ConfirmDiff,
|
| ]
|
|
|