Commit 4eb822a3 authored by Reinout van Rees's avatar Reinout van Rees

Update for show_picked_versions

parent 343e5acd
...@@ -208,7 +208,7 @@ class Buildout(DictMixin): ...@@ -208,7 +208,7 @@ class Buildout(DictMixin):
# for the versions. # for the versions.
# Set up versions section, if necessary # Set up versions section, if necessary
if 'versions' not in data['buildout']: if 'versions' not in data['buildout']:
data['buildout']['versions'] = 'versions', 'DEFAULT_VALUE' data['buildout']['versions'] = ('versions', 'DEFAULT_VALUE')
if 'versions' not in data: if 'versions' not in data:
data['versions'] = {} data['versions'] = {}
...@@ -246,6 +246,7 @@ class Buildout(DictMixin): ...@@ -246,6 +246,7 @@ class Buildout(DictMixin):
# file_name = buildout['buildout']['buildout_versions_file'] # file_name = buildout['buildout']['buildout_versions_file']
# REINOUT: add 'update-versions-file' option. # REINOUT: add 'update-versions-file' option.
# REINOUT: add a nice boolean show_picked_versions option.
self._annotated = copy.deepcopy(data) self._annotated = copy.deepcopy(data)
self._raw = _unannotate(data) self._raw = _unannotate(data)
...@@ -1843,7 +1844,3 @@ def bool_option(options, name, default=None): ...@@ -1843,7 +1844,3 @@ def bool_option(options, name, default=None):
except KeyError: except KeyError:
raise zc.buildout.UserError( raise zc.buildout.UserError(
'Invalid value for %r option: %r' % (name, value)) 'Invalid value for %r option: %r' % (name, value))
# REINOUT: add a new bool_option for allow_picked_versions so that 'show' is
# also an acceptable value.
# Or add a nice boolean show_picked_versions option.
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