##// END OF EJS Templates
fix inappropriate str.replace in completer.expand_user...
fix inappropriate str.replace in completer.expand_user The replacement could catch extra matches, mangling the tilde_val. This uses slicing instead, to prevent multiple replacements. closes gh-869

File last commit:

r2460:e8303d57
r5201:2d607167
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')