From 169a946a0307d72e60d97eb4e08e4719aef97be5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adolfo=20G=C3=B3mez=20Garc=C3=ADa?= Date: Thu, 28 Apr 2016 09:34:43 +0200 Subject: [PATCH] Fixed small bug on return clone --- client/src/uds/forward.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/uds/forward.py b/client/src/uds/forward.py index dd43d6931..87b6bbfc0 100644 --- a/client/src/uds/forward.py +++ b/client/src/uds/forward.py @@ -109,7 +109,7 @@ class ForwardThread(threading.Thread): while ft.status == 0: time.sleep(0.1) - return ft + return (ft, localPort) def _timerFnc(self):