diff mbox

[U-Boot,v3,2/4] tools: moveconfig: New color used for changed defconfig

Message ID 1465588412-20257-2-git-send-email-joe.hershberger@ni.com
State Accepted
Commit 06cc1d36d0e5ae4954f60bce78f6ac2117c3b357
Headers show

Commit Message

Joe Hershberger June 10, 2016, 7:53 p.m. UTC
The old color blends in with similar messages and makes them not stand
out.

Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
---

Changes in v3: None
Changes in v2: None

 tools/moveconfig.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Masahiro Yamada June 11, 2016, 3:06 p.m. UTC | #1
2016-06-11 4:53 GMT+09:00 Joe Hershberger <joe.hershberger@ni.com>:
> The old color blends in with similar messages and makes them not stand
> out.
>
> Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>

Reviewed-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Masahiro Yamada June 12, 2016, 10:31 p.m. UTC | #2
2016-06-12 0:06 GMT+09:00 Masahiro Yamada <yamada.masahiro@socionext.com>:
> 2016-06-11 4:53 GMT+09:00 Joe Hershberger <joe.hershberger@ni.com>:
>> The old color blends in with similar messages and makes them not stand
>> out.
>>
>> Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
>
> Reviewed-by: Masahiro Yamada <yamada.masahiro@socionext.com>

Applied, thanks!
diff mbox

Patch

diff --git a/tools/moveconfig.py b/tools/moveconfig.py
index 2fdc331..4832b86 100755
--- a/tools/moveconfig.py
+++ b/tools/moveconfig.py
@@ -742,7 +742,7 @@  class Slot:
         updated = not filecmp.cmp(orig_defconfig, new_defconfig)
 
         if updated:
-            self.log += color_text(self.options.color, COLOR_LIGHT_GREEN,
+            self.log += color_text(self.options.color, COLOR_LIGHT_BLUE,
                                    "defconfig was updated.\n")
 
         if not self.options.dry_run and updated: