autoupdater.py: Fix bogus use of super() in BrilloUpdater.
BUG=b:24157043
TEST=autoupdate_EndToEnd on moblab doesn't fail with TypeError
Change-Id: Ie8ac782e8ab6a60881a0847c6904a1a5aa519085
Reviewed-on: https://chromium-review.googlesource.com/304570
Commit-Ready: Gilad Arnold <garnold@chromium.org>
Tested-by: Gilad Arnold <garnold@chromium.org>
Reviewed-by: Dan Shi <dshi@chromium.org>
diff --git a/client/common_lib/cros/autoupdater.py b/client/common_lib/cros/autoupdater.py
index 4f88db0..7748bb1 100644
--- a/client/common_lib/cros/autoupdater.py
+++ b/client/common_lib/cros/autoupdater.py
@@ -652,5 +652,5 @@
@param update_url: The URL we want the update to use.
@param host: A client.common_lib.hosts.Host implementation.
"""
- super(ChromiumOSUpdater, self).__init__(
+ super(BrilloUpdater, self).__init__(
'/system/bin/update_engine_client', update_url, host)