Skip to content

Commit 1b0c86c

Browse files
committed
cli: make the InvalidServiceError message more descriptive
1 parent b7d72b6 commit 1b0c86c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymobiledevice3/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def main() -> None:
132132
logger.warning('Trying again over tunneld since RSD is required for this command')
133133
should_retry_over_tunneld = True
134134
elif (e.identifier is not None) and ('developer' in sys.argv) and ('--tunnel' not in sys.argv):
135-
logger.warning('Trying again over tunneld since it is a developer command')
135+
logger.warning('Got an InvalidServiceError. Trying again over tunneld since it is a developer command')
136136
should_retry_over_tunneld = True
137137
if should_retry_over_tunneld:
138138
sys.argv += ['--tunnel', e.identifier]

0 commit comments

Comments
 (0)