##// END OF EJS Templates
Fix error in test suite startup with dotted import names....
Fix error in test suite startup with dotted import names. Detected first on ubuntu 12.04, but the bug is generic, we just hadn't seen it before. Will push straight to master as this will begin causing problems as more people upgrade.

File last commit:

r2460:e8303d57
r6738:271b4cd3
Show More
setupegg.py
6 lines | 156 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""
# Import setuptools and call the actual setup
import setuptools
execfile('setup.py')