diff options
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 4eb496a0..a2779886 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 |