Commit fcaa70d1 authored by Qinusty's avatar Qinusty
Browse files

element.py: reword Downloaded to Pulled

This changes the info phrase for when an artifact is pulled from a
remote server.
parent b0cbcfa2
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1746,7 +1746,7 @@ class Element(Plugin):

        # Notify successfull download
        display_key = self._get_brief_display_key()
        self.info("Downloaded artifact {}".format(display_key))
        self.info("Pulled artifact {}".format(display_key))
        return True

    # _skip_push():
+1 −1
Original line number Diff line number Diff line
@@ -178,7 +178,7 @@ class Result():
        return list(pushed)

    def get_pulled_elements(self):
        pulled = re.findall(r'\[\s*pull:(\S+)\s*\]\s*INFO\s*Downloaded artifact', self.stderr)
        pulled = re.findall(r'\[\s*pull:(\S+)\s*\]\s*INFO\s*Pulled artifact', self.stderr)
        if pulled is None:
            return []