parent dab0acfa
...@@ -16,6 +16,14 @@ final soon.) ...@@ -16,6 +16,14 @@ final soon.)
Change History 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) 1.0.0b28 (2007-07-05)
===================== =====================
......
...@@ -93,8 +93,8 @@ class Buildout(UserDict.DictMixin): ...@@ -93,8 +93,8 @@ class Buildout(UserDict.DictMixin):
base = None base = None
# load user defaults, which override defaults # load user defaults, which override defaults
if user_defaults and 'HOME' in os.environ: if user_defaults:
user_config = os.path.join(os.environ['HOME'], user_config = os.path.join(os.path.expanduser('~'),
'.buildout', 'default.cfg') '.buildout', 'default.cfg')
if os.path.exists(user_config): if os.path.exists(user_config):
_update(data, _open(os.path.dirname(user_config), 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