summaryrefslogtreecommitdiff
path: root/python/python.go
diff options
context:
space:
mode:
author Colin Cross <ccross@android.com> 2018-04-11 14:46:31 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2018-04-11 14:46:31 +0000
commitb3f16dea37710602c5778a2d432b33621dd5a5b1 (patch)
tree1ecbd9e9fd0f96be14896b8309affdb9a38e81ea /python/python.go
parent34b22839f2fa03425384e1b930c2dff60e225e51 (diff)
parentff3ae9da749583929bdb2501a1389ea14ff0ffca (diff)
Merge "Consistently use Bool instead of proptools.Bool"
Diffstat (limited to 'python/python.go')
-rw-r--r--python/python.go4
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