From 84e71c94081b7493fe3561f0cd86601fbe8e2e95 Mon Sep 17 00:00:00 2001 From: Johan Pauwels Date: Mon, 18 May 2020 13:09:40 +0100 Subject: [PATCH] Fix alignment in generated Xcode file --- waflib/extras/xcode6.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/waflib/extras/xcode6.py b/waflib/extras/xcode6.py index 0dd68b94..deb956e1 100644 --- a/waflib/extras/xcode6.py +++ b/waflib/extras/xcode6.py @@ -167,8 +167,8 @@ class XCodeNode(object): elif isinstance(value, list): result = "(\n" for i in value: - result = result + "\t\t\t%s,\n" % self.tostring(i) - result = result + "\t\t)" + result = result + "\t\t\t\t%s,\n" % self.tostring(i) + result = result + "\t\t\t)" return result elif isinstance(value, XCodeNode): return value._id