From 7853936a48ae473c851ce9d259a4920e903a4b0e Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Mon, 13 Feb 2012 11:35:43 -0800 Subject: [PATCH] Fix missing CalledProcessError import --- src/pylorax/ltmpl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pylorax/ltmpl.py b/src/pylorax/ltmpl.py index 03a7aed4..850fe52e 100644 --- a/src/pylorax/ltmpl.py +++ b/src/pylorax/ltmpl.py @@ -25,7 +25,7 @@ logger = logging.getLogger("pylorax.ltmpl") import os, re, glob, shlex, fnmatch from os.path import basename, isdir -from subprocess import check_call, check_output +from subprocess import check_call, check_output, CalledProcessError from sysutils import joinpaths, cpfile, mvfile, replace, remove from yumhelper import * # Lorax*Callback classes