diff options
author | Treehugger Robot <treehugger-gerrit@google.com> | 2017-05-17 00:31:06 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2017-05-17 00:31:08 +0000 |
commit | 2c13abc95e3e2c6c12fff6aa42262ef3296c2a1b (patch) | |
tree | d8721ce185fc9844fc5fb004955f1e824ba195ec /python | |
parent | e121bbbb3bc6088dd7a965cf391cdd646dc6634c (diff) | |
parent | 270051119a21ae5f73aa69b16ce2fb53cae534d3 (diff) | |
download | android_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.go | 2 |
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`), }, }) |