summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/dist.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2008-05-11 14:00:00 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2008-05-11 14:00:00 (GMT)
commitaac5c8669f34b285c9582dd7083d74dcca31dbae (patch)
treec5f8bef43d564d2e294b5ccb867740610be9241a /Lib/distutils/dist.py
parent6c02916dfbdad27f26888c287d2cfa5639667731 (diff)
downloadcpython-aac5c8669f34b285c9582dd7083d74dcca31dbae.zip
cpython-aac5c8669f34b285c9582dd7083d74dcca31dbae.tar.gz
cpython-aac5c8669f34b285c9582dd7083d74dcca31dbae.tar.bz2
#1858: re-apply patch for this, adding the missing files
Diffstat (limited to 'Lib/distutils/dist.py')
-rw-r--r--Lib/distutils/dist.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/Lib/distutils/dist.py b/Lib/distutils/dist.py
index d098cb9..0b13c1e 100644
--- a/Lib/distutils/dist.py
+++ b/Lib/distutils/dist.py
@@ -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"