diff options
Diffstat (limited to 'python/python.go')
| -rw-r--r-- | python/python.go | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/python/python.go b/python/python.go index 0f5b7880e..83844e642 100644 --- a/python/python.go +++ b/python/python.go @@ -675,7 +675,7 @@ func (p *Module) collectPathsFromTransitiveDeps(ctx android.ModuleContext) {  		if !isPythonLibModule(child) {  			ctx.PropertyErrorf("libs",  				"the dependency %q of module %q is not Python library!", -				ctx.ModuleName(), ctx.OtherModuleName(child)) +				ctx.OtherModuleName(child), ctx.ModuleName())  		}  		// collect source and data paths, checking that there are no duplicate output file conflicts  		if dep, ok := child.(pythonDependency); ok { |