From be1beec9805715029934e7da7bc54a99070c0021 Mon Sep 17 00:00:00 2001 From: Nemunaire Date: Mon, 5 May 2014 20:05:58 +0200 Subject: [PATCH] Networking module: fix regression on traceurl command --- modules/networking.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/networking.py b/modules/networking.py index 3014d28..6557a03 100644 --- a/modules/networking.py +++ b/modules/networking.py @@ -172,7 +172,7 @@ def traceURL(url, timeout=5, stack=None): stack.append('stack overflow :(') return stack - o = urlparse(url, "http") + o = urllib.parse.urlparse(url, "http") if o.netloc == "": return stack if o.scheme == "http":