diff options
author | pje <none@none> | 2013-06-03 13:25:04 -0400 |
---|---|---|
committer | pje <none@none> | 2013-06-03 13:25:04 -0400 |
commit | 609e9c41cef5b938482b1f0f77334283b89b0750 (patch) | |
tree | 179c02e9dae20ad47bd6f3cd0cd11f80fb94ae63 | |
parent | d58f9a5feafbeb74b6205c43a4d8cc58923814de (diff) | |
download | external_python_setuptools-609e9c41cef5b938482b1f0f77334283b89b0750.tar.gz external_python_setuptools-609e9c41cef5b938482b1f0f77334283b89b0750.tar.bz2 external_python_setuptools-609e9c41cef5b938482b1f0f77334283b89b0750.zip |
Fix missing import
(grafted from 1375a2f096ce47e2b9b7b27559671a5344a1189f)
--HG--
branch : setuptools-0.6
extra : source : 1375a2f096ce47e2b9b7b27559671a5344a1189f
-rw-r--r-- | setuptools/ssl_support.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/ssl_support.py b/setuptools/ssl_support.py index 2e615db3..f6485a69 100644 --- a/setuptools/ssl_support.py +++ b/setuptools/ssl_support.py @@ -1,4 +1,4 @@ -import sys, os, socket, urllib2, atexit +import sys, os, socket, urllib2, atexit, re from pkg_resources import ResolutionError, ExtractionError, resource_filename try: |