aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-12-14 00:01:19 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-12-14 00:01:19 +0000
commitdccf4426dc36b47a42475329565b247318c97d58 (patch)
tree410f760f7e1cf8b677e7a6ac10856cd6edbabe5c
parent87705049b86e70bd27fbdd9cd50b9b7e222f24b9 (diff)
parent649d91d7393675ae979c7a419bbddedefc6584c2 (diff)
downloadrecovery-android14-qpr2-release.tar.gz
Change-Id: I14c812588ea57d1d09544737617ac7852081ccb8
-rwxr-xr-xupdater_sample/tools/gen_update_config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/updater_sample/tools/gen_update_config.py b/updater_sample/tools/gen_update_config.py
index f2cb1a8b..5ff3b892 100755
--- a/updater_sample/tools/gen_update_config.py
+++ b/updater_sample/tools/gen_update_config.py
@@ -32,7 +32,7 @@ import os.path
import sys
import zipfile
-import ota_from_target_files # pylint: disable=import-error
+import ota_utils # pylint: disable=import-error
class GenUpdateConfig(object):
@@ -100,7 +100,7 @@ class GenUpdateConfig(object):
def _get_property_files(package_zip):
"""Constructs the property-files list for A/B streaming metadata."""
- ab_ota = ota_from_target_files.AbOtaPropertyFiles()
+ ab_ota = ota_utils.AbOtaPropertyFiles()
property_str = ab_ota.GetPropertyFilesString(package_zip, False)
property_files = []
for file in property_str.split(','):