commit | f1250781326184cde36b41bcce44d0eacc3a5bd2 | [log] [tgz] |
---|---|---|
author | Senthil Kumaran <orsenthil@gmail.com> | Mon Oct 05 04:16:26 2009 +0000 |
committer | Senthil Kumaran <orsenthil@gmail.com> | Mon Oct 05 04:16:26 2009 +0000 |
tree | e34dd6f7387b7fbfd50eb740c2b164c466b8e3a8 | |
parent | 0240c924dbd17b01dc739f20c39247637599f330 [diff] [blame] |
Fix for Issue7026. Making it self.env.unset
diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py index 0870b53..5f9744c 100644 --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py
@@ -103,7 +103,7 @@ # Delete all proxy related env vars for k, v in os.environ.iteritems(): if 'proxy' in k.lower(): - env.unset(k) + self.env.unset(k) def tearDown(self): # Restore all proxy related env vars