#1858: re-apply patch for this, adding the missing files

This commit is contained in:
Andrew M. Kuchling 2008-05-11 14:00:00 +00:00
parent 6c02916dfb
commit aac5c8669f
11 changed files with 296 additions and 84 deletions

View file

@ -343,10 +343,9 @@ Common commands: (see '--help-commands' for more)
user_filename = "pydistutils.cfg"
# And look for the user config file
if 'HOME' in os.environ:
user_file = os.path.join(os.environ.get('HOME'), user_filename)
if os.path.isfile(user_file):
files.append(user_file)
user_file = os.path.join(os.path.expanduser('~'), user_filename)
if os.path.isfile(user_file):
files.append(user_file)
# All platforms support local setup.cfg
local_file = "setup.cfg"