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

Commit fc2297c9 authored by Tom Powell's avatar Tom Powell Committed by Dan Pasanen
Browse files

py3: update releasetools with proper print syntax

Change-Id: I48534a72e6559f60af5f9b1c09040b34b7575b63
parent fdc26cd5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -223,7 +223,7 @@ def AddUserdataExtra(output_zip, prefix="IMAGES/"):

  prebuilt_path = os.path.join(OPTIONS.input_tmp, prefix, "userdata_%s.img" % extra_name)
  if os.path.exists(prebuilt_path):
    print "userdata_%s.img already exists in %s, no need to rebuild..." % (extra_name, prefix,)
    print("userdata_%s.img already exists in %s, no need to rebuild..." % (extra_name, prefix,))
    return

  # We only allow yaffs to have a 0/missing partition_size.
+1 −1
Original line number Diff line number Diff line
@@ -1715,7 +1715,7 @@ def main(argv):

    cache_size = OPTIONS.info_dict.get("cache_size", None)
    if cache_size is None:
      print "--- can't determine the cache partition size ---"
      print("--- can't determine the cache partition size ---")
    OPTIONS.cache_size = cache_size

    if OPTIONS.incremental_source is None: