commit | 9870ab1cabdeaa7b74f9736d6a8db4a683663f09 | [log] [tgz] |
---|---|---|
author | Alex Márquez Pérez Muñíz Díaz Púras Thaureaux <alexmarquez@google.com> | Fri Aug 20 22:58:16 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Fri Aug 20 22:58:16 2021 +0000 |
tree | e9581e8331cf36c3f79a206e2ae93989ad611fcd | |
parent | 804943ee8e1a077f5e52754ef138e07ab907139e [diff] | |
parent | ee9c499267e96e81d34019a31ab7f82a927e49a6 [diff] |
Merge "Fix inverted error message" am: 8f33dcc9e3 am: b8cc59cfd3 am: ee9c499267 Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1804261 Change-Id: Ice5223cde0d9a3de8d4c09f11efba8e5ac13eb8d
diff --git a/python/python.go b/python/python.go index 0f5b788..83844e6 100644 --- a/python/python.go +++ b/python/python.go
@@ -675,7 +675,7 @@ 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 {