summaryrefslogtreecommitdiff
path: root/setuptools/command/develop.py
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2006-09-06 21:01:13 +0000
committerPJ Eby <distutils-sig@python.org>2006-09-06 21:01:13 +0000
commit3d478f995f826f66ec461ddda975121149abc142 (patch)
treebec5f71614a6fda896eb4c50b8f5ebff6d87f74d /setuptools/command/develop.py
parent259b7424f1c96920ff1db74113b265cbfe794323 (diff)
downloadpython-setuptools-bitbucket-3d478f995f826f66ec461ddda975121149abc142.tar.gz
Generated scripts now use ``-x`` on the ``#!`` line when ``sys.executable``
contains non-ASCII characters, to prevent deprecation warnings about an unspecified encoding when the script is run. (backport from trunk)
Diffstat (limited to 'setuptools/command/develop.py')
-rwxr-xr-xsetuptools/command/develop.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/develop.py b/setuptools/command/develop.py
index 0c20dd8d..fc35ad85 100755
--- a/setuptools/command/develop.py
+++ b/setuptools/command/develop.py
@@ -3,7 +3,7 @@ from distutils.util import convert_path
from pkg_resources import Distribution, PathMetadata, normalize_path
from distutils import log
from distutils.errors import *
-import sys, os
+import sys, os, setuptools
class develop(easy_install):
"""Set up package for development"""