From 5d6be5b80826f8098b2688f2cccbc2a7c4bbf8da Mon Sep 17 00:00:00 2001 From: Matt Arsenault Date: Thu, 30 Apr 2020 19:09:11 -0400 Subject: [PATCH] Refer explicitly to python3 in shebang line MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On Ubuntu 20.04, there is no more python or python2. Currently I get this: /usr/bin/env: ‘python’: No such file or directory Change-Id: Ib310b8aa7c1bd62973ef3cc8bcaf571831ad4435 --- rocm_agent_enumerator | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rocm_agent_enumerator b/rocm_agent_enumerator index 565969d463..f62daa4881 100755 --- a/rocm_agent_enumerator +++ b/rocm_agent_enumerator @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import os import re