From: Jörg Krause Date: Mon, 6 Mar 2017 20:07:11 +0000 (+0100) Subject: tools: binman: change shebang from python into python2 X-Git-Tag: v2017.03~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=66a7a2464870700b17d7235ff247c45d705ed5f7;p=platform%2Fkernel%2Fu-boot.git tools: binman: change shebang from python into python2 This tool does not work with Python 3. Change the shebang to make sure the script is run by a Python 2 interpreter. Signed-off-by: Jörg Krause --- diff --git a/tools/binman/binman.py b/tools/binman/binman.py index e1cb2fb..857d698 100755 --- a/tools/binman/binman.py +++ b/tools/binman/binman.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 # Copyright (c) 2016 Google, Inc # Written by Simon Glass