From b3a5981efe5059ee280fc9a28c6b14d053fa1c82 Mon Sep 17 00:00:00 2001 From: Devon Carew Date: Mon, 17 Nov 2014 16:57:47 -0800 Subject: [PATCH] fix bug --- lib/src/cli_app.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/cli_app.dart b/lib/src/cli_app.dart index 1f97b68d..09f346ce 100644 --- a/lib/src/cli_app.dart +++ b/lib/src/cli_app.dart @@ -93,7 +93,7 @@ class CliApp { if (!analytics.hasSetOptIn) { _out("Welcome to Stagehand! We collect anonymous usage statistics and crash reports in"); _out("order to improve the tool (http://goo.gl/6wsncI). Would you like to opt-in to"); - io.stdout.write("additional analytics to help us improve Stagehand [y/yes/no]? "); + _out("additional analytics to help us improve Stagehand [y/yes/no]? "); io.stdout.flush(); String response = io.stdin.readLineSync(); response = response.toLowerCase().trim();