summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-05-20 16:01:27 +0200
committerGitHub <noreply@github.com>2020-05-20 16:01:27 +0200
commitad44a7301c038e0a300a20fc26952e86b3b92d83 (patch)
tree3b45910a5add8d032c832ad803d95b6c5c60db5c
parenta012bed858216e8049548d52f9cbbc8c9d2f7c47 (diff)
parentd81c327fd3660184908af824dd5c51dddbd6001d (diff)
downloadvyos-1x-ad44a7301c038e0a300a20fc26952e86b3b92d83.tar.gz
vyos-1x-ad44a7301c038e0a300a20fc26952e86b3b92d83.zip
Merge pull request #417 from thomas-mangin/T2467
util: T2467: fix missing import
-rw-r--r--python/vyos/util.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/python/vyos/util.py b/python/vyos/util.py
index c2479aac4..c93f8d3f0 100644
--- a/python/vyos/util.py
+++ b/python/vyos/util.py
@@ -34,6 +34,7 @@ def _add_sudo(command):
from subprocess import Popen
from subprocess import PIPE
+from subprocess import STDOUT
from subprocess import DEVNULL