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

Commit 0953c602 authored by Brint E. Kriebel's avatar Brint E. Kriebel
Browse files

releasetools: Fix error text in ota_from_target_files

property isn't the variable name, prop is

Change-Id: I0fc6adddfd51ba9bc79f6559c61cd831203c9e3d
parent 52520a72
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -607,7 +607,7 @@ def GetBuildProp(prop, info_dict):
  try:
    return info_dict.get("build.prop", {})[prop]
  except KeyError:
    raise common.ExternalError("couldn't find %s in build.prop" % (property,))
    raise common.ExternalError("couldn't find %s in build.prop" % (prop,))

def AddToKnownPaths(filename, known_paths):
  if filename[-1] == "/":