From 14644632ed4f34df67c9690d576e9cc4820f4b56 Mon Sep 17 00:00:00 2001 From: Christian Breunig Date: Sat, 15 Jul 2023 09:37:40 +0200 Subject: T5195: add missing "import os" for vyos.utils.process --- python/vyos/utils/process.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/vyos/utils/process.py b/python/vyos/utils/process.py index 15b26f4eb..911547995 100644 --- a/python/vyos/utils/process.py +++ b/python/vyos/utils/process.py @@ -13,6 +13,8 @@ # You should have received a copy of the GNU Lesser General Public # License along with this library. If not, see . +import os + from subprocess import Popen from subprocess import PIPE from subprocess import STDOUT -- cgit v1.2.3