From 3ad7bc87e566cbec548b882a2a01aba28c18629a Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Tue, 22 Dec 2020 07:44:57 +1100 Subject: [PATCH] docs: fix simple typo, positibe -> positive There is a small typo in src/util/UpnpPunch.py. Should read `positive` rather than `positibe`. --- src/util/UpnpPunch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/UpnpPunch.py b/src/util/UpnpPunch.py index 48b497b6..18f4aaee 100644 --- a/src/util/UpnpPunch.py +++ b/src/util/UpnpPunch.py @@ -339,7 +339,7 @@ def _communicate_with_igd(port=15441, success = True break - # Wait another 10sec for competition or any positibe result + # Wait another 10sec for competition or any positive result for _ in range(10): all_done = all([thread.value is not None for thread in threads]) any_succeed = any([thread.value for thread in threads])