Skip to content

Commit 8e96de3

Browse files
authored
Merge pull request #1055 from doronz88/refactor/invalid-service-error-message
cli: make the `InvalidServiceError` message more descriptive
2 parents b7a5393 + 1b0c86c commit 8e96de3

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)