From 6cb68a61b2cb8285ae202e99a9313e4983d3a5eb Mon Sep 17 00:00:00 2001 From: "usman@cyberpersons.com" Date: Wed, 25 Jan 2023 11:27:17 +0500 Subject: [PATCH] bug fix: email debugger --- plogical/processUtilities.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plogical/processUtilities.py b/plogical/processUtilities.py index 731e93841..5a98aa322 100755 --- a/plogical/processUtilities.py +++ b/plogical/processUtilities.py @@ -166,7 +166,7 @@ class ProcessUtilities(multi.Thread): distroPath = '/etc/lsb-release' if os.path.exists(distroPath): - if open(distroPath, 'r').read().find('20.04') > -1: + if open(distroPath, 'r').read().find('20.04') > -1 or open(distroPath, 'r').read().find('22.04'): return ProcessUtilities.ubuntu20 return ProcessUtilities.ubuntu else: