We are now calling pyhton3 via shebang, so noneed to care about python2 anymore.
Signed-off-by: Florian Bezdeka <[email protected]> --- tools/jailhouse-hardware-check | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tools/jailhouse-hardware-check b/tools/jailhouse-hardware-check index 7a41b48e..1ed659c6 100755 --- a/tools/jailhouse-hardware-check +++ b/tools/jailhouse-hardware-check @@ -20,10 +20,6 @@ import sys sys.path[0] = os.path.dirname(os.path.abspath(__file__)) + "/.." import pyjailhouse.sysfs_parser as sysfs_parser -# just a dummy to make python2 happy -if sys.version_info[0] < 3: - class PermissionError(OSError): - pass check_passed = True ran_all = True -- 2.31.1 -- You received this message because you are subscribed to the Google Groups "Jailhouse" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jailhouse-dev/20210521080211.487380-4-florian.bezdeka%40siemens.com.
