aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2017-05-17 00:31:06 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-05-17 00:31:08 +0000
commit2c13abc95e3e2c6c12fff6aa42262ef3296c2a1b (patch)
treed8721ce185fc9844fc5fb004955f1e824ba195ec /python
parente121bbbb3bc6088dd7a965cf391cdd646dc6634c (diff)
parent270051119a21ae5f73aa69b16ce2fb53cae534d3 (diff)
downloadandroid_build_soong-2c13abc95e3e2c6c12fff6aa42262ef3296c2a1b.tar.gz
android_build_soong-2c13abc95e3e2c6c12fff6aa42262ef3296c2a1b.tar.bz2
android_build_soong-2c13abc95e3e2c6c12fff6aa42262ef3296c2a1b.zip
Merge "Fix the issue "\n" didn't get interpreted properly."
Diffstat (limited to 'python')
-rw-r--r--python/builder.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/builder.go b/python/builder.go
index 541d2bf0..b823fcb9 100644
--- a/python/builder.go
+++ b/python/builder.go
@@ -82,7 +82,7 @@ func registerBuildActionForModuleFileList(ctx android.ModuleContext,
Output: fileList,
Implicits: files,
Args: map[string]string{
- "content": strings.Join(content, "\n"),
+ "content": strings.Join(content, `\n`),
},
})