From 94b889f93afeda4c3fa53631975e984f884ce927 Mon Sep 17 00:00:00 2001 From: Hamza Date: Fri, 11 Dec 2020 00:03:30 +0100 Subject: [PATCH] fix adb reverse command --- ppadb/command/transport/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ppadb/command/transport/__init__.py b/ppadb/command/transport/__init__.py index 1adadf6..288155b 100644 --- a/ppadb/command/transport/__init__.py +++ b/ppadb/command/transport/__init__.py @@ -162,7 +162,7 @@ def remount(self): return True def reverse(self, remote, local): - cmd = "reverse:forward:{remote}:{local}".format( + cmd = "reverse:forward:{remote};{local}".format( remote=remote, local=local )