Fix missing import PIPE

This commit is contained in:
James R. Barlow
2017-05-11 23:07:20 -07:00
parent d926f07ac1
commit 0dae1602c7

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# © 2015 James R. Barlow: github.com/jbarlow83
from subprocess import CalledProcessError, STDOUT, run, check_output
from subprocess import CalledProcessError, STDOUT, PIPE, run, check_output
from functools import lru_cache
import sys
import os