Commit 8a3f22eb authored by philikon's avatar philikon
parent 29975b4e
......@@ -16,6 +16,14 @@ final soon.)
Change History
**************
1.0.0b29 (unreleased)
=====================
Bugs Fixed
----------
- 126441: Look for default.cfg in the right place on Windows.
1.0.0b28 (2007-07-05)
=====================
......
......@@ -93,8 +93,8 @@ class Buildout(UserDict.DictMixin):
base = None
# load user defaults, which override defaults
if user_defaults and 'HOME' in os.environ:
user_config = os.path.join(os.environ['HOME'],
if user_defaults:
user_config = os.path.join(os.path.expanduser('~'),
'.buildout', 'default.cfg')
if os.path.exists(user_config):
_update(data, _open(os.path.dirname(user_config), user_config,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment