Skip to content

Commit

Permalink
Merge pull request #1055 from doronz88/refactor/invalid-service-error…
Browse files Browse the repository at this point in the history
…-message

cli: make the `InvalidServiceError` message more descriptive
  • Loading branch information
doronz88 authored Jun 9, 2024
2 parents b7a5393 + 1b0c86c commit 8e96de3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymobiledevice3/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def main() -> None:
logger.warning('Trying again over tunneld since RSD is required for this command')
should_retry_over_tunneld = True
elif (e.identifier is not None) and ('developer' in sys.argv) and ('--tunnel' not in sys.argv):
logger.warning('Trying again over tunneld since it is a developer command')
logger.warning('Got an InvalidServiceError. Trying again over tunneld since it is a developer command')
should_retry_over_tunneld = True
if should_retry_over_tunneld:
sys.argv += ['--tunnel', e.identifier]
Expand Down

0 comments on commit 8e96de3

Please sign in to comment.