Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bbf17e92 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix syntax error for SignApexFile"

parents e16258ff ac936fd5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@ logger = logging.getLogger(__name__)


def SignApexFile(avbtool, apex_file, payload_key, container_key,
                 signing_args=None):
                 no_hashtree, signing_args=None):
  """Signs the given apex file."""
  with open(apex_file, 'rb') as input_fp:
    apex_data = input_fp.read()
@@ -56,7 +56,7 @@ def SignApexFile(avbtool, apex_file, payload_key, container_key,
      container_key=container_key,
      container_pw=None,
      codename_to_api_level_map=None,
      no_hashtree=False,
      no_hashtree=no_hashtree,
      signing_args=signing_args)


+2 −1
Original line number Diff line number Diff line
@@ -38,5 +38,6 @@ class SignApexTest(test_utils.ReleaseToolsTestCase):
        'avbtool',
        foo_apex,
        payload_key,
        container_key)
        container_key,
        False)
    self.assertTrue(os.path.exists(signed_foo_apex))