Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Primary navigation
Search or go to…
Project
buildstream
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Privacy statement
Keyboard shortcuts
?
What's new
6
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
BuildStream
buildstream
Merge requests
!366
Allow 'None' as a default_value for _yaml.node_get
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Allow 'None' as a default_value for _yaml.node_get
node-get-default
into
master
Overview
5
Commits
1
Pipelines
7
Changes
9
All threads resolved!
Hide all comments
Merged
Tristan Maat
requested to merge
node-get-default
into
master
6 years ago
Overview
5
Commits
1
Pipelines
7
Changes
9
All threads resolved!
Hide all comments
Expand
0
0
Merge request reports
Viewing commit
bbfc4a28
Show latest version
9 files
+
32
−
27
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
Search (e.g. *.vue) (Ctrl+P)
bbfc4a28
Allow 'None' as a default_value for _yaml.node_get
· bbfc4a28
Tristan Maat
authored
6 years ago
buildstream/_options/option.py
+
1
−
1
Options
@@ -62,7 +62,7 @@ class Option():
# the option
def
load
(
self
,
node
):
self
.
description
=
_yaml
.
node_get
(
node
,
str
,
'
description
'
)
self
.
variable
=
_yaml
.
node_get
(
node
,
str
,
'
variable
'
,
default_value
=
''
)
or
None
self
.
variable
=
_yaml
.
node_get
(
node
,
str
,
'
variable
'
,
default_value
=
None
)
# Assert valid symbol name for variable name
if
self
.
variable
:
Loading