readds accidental deletion of mozharness import ref, r?rail draft
authorJordan Lund <jlund@mozilla.com>
Tue, 23 Feb 2016 12:55:32 -0800
changeset 333922 054cc92d0c2f9b32574fd7097795ad67c2235fb1
parent 333919 4ca122a863e756bba7e0023501f2d85fe89707fb
child 514766 4921e5fe233a3b6cba9db6089f7670b618826b4d
push id11387
push userjlund@mozilla.com
push dateTue, 23 Feb 2016 20:56:17 +0000
reviewersrail
milestone47.0
readds accidental deletion of mozharness import ref, r?rail MozReview-Commit-ID: DjXgtJcjMGq
testing/mozharness/scripts/release/beet_mover.py
--- a/testing/mozharness/scripts/release/beet_mover.py
+++ b/testing/mozharness/scripts/release/beet_mover.py
@@ -16,16 +16,17 @@ import re
 from os import listdir
 from os.path import isfile, join
 
 sys.path.insert(1, os.path.dirname(os.path.dirname(sys.path[0])))
 from mozharness.base.log import FATAL
 from mozharness.base.python import VirtualenvMixin
 from mozharness.base.script import BaseScript
 from mozharness.mozilla.aws import pop_aws_auth_from_env
+import mozharness
 
 
 def get_hash(content, hash_type="md5"):
     h = hashlib.new(hash_type)
     h.update(content)
     return h.hexdigest()