From 72aab7701f823c9dd1f204e8cc50647a8a7ddf32 Mon Sep 17 00:00:00 2001 From: BreakWa11 Date: Wed, 15 Jun 2016 17:29:05 +0800 Subject: [PATCH] fix a tiny bug --- shadowsocks/common.py | 1 + 1 file changed, 1 insertion(+) diff --git a/shadowsocks/common.py b/shadowsocks/common.py index 5a3c9b1..d75602b 100644 --- a/shadowsocks/common.py +++ b/shadowsocks/common.py @@ -303,6 +303,7 @@ class PortRange(object): i = int_range[0] while i <= int_range[1]: self.range.add(i) + i += 1 except Exception as e: logging.error(e)