diff options
| author | 2018-04-11 14:46:31 +0000 | |
|---|---|---|
| committer | 2018-04-11 14:46:31 +0000 | |
| commit | b3f16dea37710602c5778a2d432b33621dd5a5b1 (patch) | |
| tree | 1ecbd9e9fd0f96be14896b8309affdb9a38e81ea /python/python.go | |
| parent | 34b22839f2fa03425384e1b930c2dff60e225e51 (diff) | |
| parent | ff3ae9da749583929bdb2501a1389ea14ff0ffca (diff) | |
Merge "Consistently use Bool instead of proptools.Bool"
Diffstat (limited to 'python/python.go')
| -rw-r--r-- | python/python.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/python.go b/python/python.go index 4eb496a03..a27798864 100644 --- a/python/python.go +++ b/python/python.go @@ -252,9 +252,9 @@ func (p *Module) HostToolPath() android.OptionalPath { func (p *Module) isEmbeddedLauncherEnabled(actual_version string) bool { switch actual_version { case pyVersion2: - return proptools.Bool(p.properties.Version.Py2.Embedded_launcher) + return Bool(p.properties.Version.Py2.Embedded_launcher) case pyVersion3: - return proptools.Bool(p.properties.Version.Py3.Embedded_launcher) + return Bool(p.properties.Version.Py3.Embedded_launcher) } return false |