summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-12-20 18:57:44 -0500
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-12-20 18:59:34 -0500
commitdf0a7823af48dbe3f827147a9124e72764bff8e0 (patch)
tree8bcf7937b5c10d62d1c9f3d5c826896cacd74713
parentedb247d44b3d83ba0711440f463c8e920532a67f (diff)
downloadbuildstream-df0a7823af48dbe3f827147a9124e72764bff8e0.tar.gz
_artifactcache/tarcache.py: Fixed for new location of ProgramNotFoundError
-rw-r--r--buildstream/_artifactcache/tarcache.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildstream/_artifactcache/tarcache.py b/buildstream/_artifactcache/tarcache.py
index 1c675e9a2..5f8fc7410 100644
--- a/buildstream/_artifactcache/tarcache.py
+++ b/buildstream/_artifactcache/tarcache.py
@@ -23,9 +23,9 @@ import shutil
import tarfile
import subprocess
-from .. import utils
+from .. import utils, ProgramNotFoundError
from ..element import _KeyStrength
-from .._exceptions import ArtifactError, ProgramNotFoundError
+from .._exceptions import ArtifactError
from . import ArtifactCache