diff options
author | Christian Breunig <christian@breunig.cc> | 2023-07-15 09:37:40 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2023-07-15 09:37:40 +0200 |
commit | 14644632ed4f34df67c9690d576e9cc4820f4b56 (patch) | |
tree | 6d8c578d18b1080d277a12b3e38eb9b5d5fa442f | |
parent | d1ca536da448749dff557f13ecae97b124026e96 (diff) | |
download | vyos-1x-14644632ed4f34df67c9690d576e9cc4820f4b56.tar.gz vyos-1x-14644632ed4f34df67c9690d576e9cc4820f4b56.zip |
T5195: add missing "import os" for vyos.utils.process
-rw-r--r-- | python/vyos/utils/process.py | 2 |
1 files changed, 2 insertions, 0 deletions
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 <http://www.gnu.org/licenses/>. +import os + from subprocess import Popen from subprocess import PIPE from subprocess import STDOUT |