| Index: third_party/WebKit/Tools/Scripts/webkitpy/common/system/user.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/user.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/user.py
|
| index da02d8555154823517334c4f1f2c2a0fd2f8f12d..f3ffc303db3b23529503a27f55621718f6cb9df2 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/user.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/user.py
|
| @@ -83,7 +83,8 @@ class User(object):
|
| def _wait_on_list_response(cls, list_items, can_choose_multiple, raw_input):
|
| while True:
|
| if can_choose_multiple:
|
| - response = cls.prompt("Enter one or more numbers (comma-separated) or ranges (e.g. 3-7), or \"all\": ", raw_input=raw_input)
|
| + response = cls.prompt(
|
| + "Enter one or more numbers (comma-separated) or ranges (e.g. 3-7), or \"all\": ", raw_input=raw_input)
|
| if not response.strip() or response == "all":
|
| return list_items
|
|
|
|
|