Some systems that only have Python 3.x installed will not have a "python" binary in the path. Since pretty_print_stacks.py is a Python 3 program, we can use an appropriate shebang. Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> --- scripts/pretty_print_stacks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pretty_print_stacks.py b/scripts/pretty_print_stacks.py index a863c8e..1e59cde 100755 --- a/scripts/pretty_print_stacks.py +++ b/scripts/pretty_print_stacks.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import re import subprocess -- 1.8.3.1