summaryrefslogtreecommitdiff
path: root/buildstream/element.py
diff options
context:
space:
mode:
authorJames Ennis <james.ennis@codethink.com>2018-03-28 13:07:06 +0100
committerJames Ennis <james.ennis@codethink.com>2018-03-28 17:42:50 +0100
commit118bea0817d8e96942d8b299372c54db1574e9d6 (patch)
tree6d8450794d5f173c740252a7d7030f171fa14bd9 /buildstream/element.py
parent2d7b721b8b7d2984c394e5af6ed4883baae7da1f (diff)
downloadbuildstream-118bea0817d8e96942d8b299372c54db1574e9d6.tar.gz
element.py: Make artifact lowercase in time_activity()
NOTE: artifact was also made lowercase in the function get_pushed_elements() in runcli.py
Diffstat (limited to 'buildstream/element.py')
-rw-r--r--buildstream/element.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildstream/element.py b/buildstream/element.py
index cddadd56f..2fca2bd9d 100644
--- a/buildstream/element.py
+++ b/buildstream/element.py
@@ -1220,7 +1220,7 @@ class Element(Plugin):
}
_yaml.dump(_yaml.node_sanitize(meta), os.path.join(metadir, 'artifact.yaml'))
- with self.timed_activity("Caching Artifact"):
+ with self.timed_activity("Caching artifact"):
self.__artifacts.commit(self, assembledir, self.__get_cache_keys_for_commit())
# Finally cleanup the build dir
@@ -1308,7 +1308,7 @@ class Element(Plugin):
self.warn("Not pushing tainted artifact.")
return False
- with self.timed_activity("Pushing Artifact"):
+ with self.timed_activity("Pushing artifact"):
# Push all keys used for local commit
return self.__artifacts.push(self, self.__get_cache_keys_for_commit())