瀏覽代碼

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 <joerg.krause@embedded.rocks>
Jörg Krause 8 年之前
父節點
當前提交
66a7a24648
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tools/binman/binman.py

+ 1 - 1
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 <sjg@chromium.org>