Skip to content

Commit 22a22b8

Browse files
committed
--
1 parent 2749aea commit 22a22b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/github/berstanio/pymobiledevice3/ipc/PyMobileDevice3IPC.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ public CompletableFuture<DebugServerConnection> debugServerConnect(DeviceInfo in
257257
object.put("port", port);
258258
return createRequest(object, (future, jsonObject) -> {
259259
if (jsonObject.getString("state").equals("failed_tunneld")) {
260-
future.completeExceptionally(new PyMobileDevice3Error("No tunneld instance for device " + info.getUniqueDeviceId() + " found.\nHave you started the service with `sudo " + installation.getPythonExecutable().getAbsolutePath() + " -m pymobiledevice3 remote tunneld`?"));
260+
future.completeExceptionally(new PyMobileDevice3Error("No tunneld instance for device " + info.getUniqueDeviceId() + " found. Have you started the service with `sudo " + installation.getPythonExecutable().getAbsolutePath() + " -m pymobiledevice3 remote tunneld`?"));
261261
return;
262262
}
263263
JSONObject result = jsonObject.getJSONObject("result");

0 commit comments

Comments
 (0)