summaryrefslogtreecommitdiff
path: root/buildstream/_artifactcache
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-10-12 00:35:53 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-10-12 00:37:51 +0900
commit4f0bfb4ae0551b1ee10af90a1505c973c9c7863b (patch)
treeb3c8991bc4a665f71262a7269a894c9162cafad3 /buildstream/_artifactcache
parent39492db848a193d2d8bc1b827b3bd1934bdd7a3f (diff)
downloadbuildstream-4f0bfb4ae0551b1ee10af90a1505c973c9c7863b.tar.gz
Rename element_enums.py -> types.py
This will be the place to store low level data types used throughout the core, for now this includes public and private types.
Diffstat (limited to 'buildstream/_artifactcache')
-rw-r--r--buildstream/_artifactcache/artifactcache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/_artifactcache/artifactcache.py b/buildstream/_artifactcache/artifactcache.py
index 6a9b57f2c..ecb5738d7 100644
--- a/buildstream/_artifactcache/artifactcache.py
+++ b/buildstream/_artifactcache/artifactcache.py
@@ -21,7 +21,7 @@ import os
import string
from collections import Mapping, namedtuple
-from ..element_enums import _KeyStrength
+from ..types import _KeyStrength
from .._exceptions import ArtifactError, ImplError, LoadError, LoadErrorReason
from .._message import Message, MessageType
from .. import utils