Skip to content

Commit 4ff4e8f

Browse files
committed
Improved prompt texts
1 parent 770e631 commit 4ff4e8f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

transfer-plex-user-viewstate.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,21 +39,21 @@ def str_range(stop: int) -> list:
3939

4040
# Ask user to select source user
4141
sourceAccountIndex = int(get_valid_input(
42-
"Please enter the _source_ account index",
42+
"First, please enter the _source_ account index",
4343
str_range(len(accounts)),
4444
"No account with that ID, please enter a valid account index"
4545
))
4646

4747
# Ask user to select target user
4848
targetUserIndex = int(get_valid_input(
49-
"Please enter the _target_ account index",
49+
"Now, please enter the _target_ account index",
5050
str_range(len(accounts)),
5151
"No account with that ID, please enter a valid account index"
5252
))
5353

5454
# Ask user to select copying/moving view state
5555
mode = get_valid_input(
56-
"Do want to copy or move the viewstate? (copy/move)",
56+
"Do you want to copy or move the viewstate? (copy/move)",
5757
["c", "copy", "m", "move"],
5858
"Please select either (c)opy or (m)ove"
5959
)

0 commit comments

Comments
 (0)