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

Commit 5ecba70c authored by Doug Zongker's avatar Doug Zongker
Browse files

add missing comma

A missing comma is breaking the option parsing for the signing tools
(this doesn't affect any device code, only the signing tools).
parent 8bec09ee
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -308,7 +308,7 @@ def ParseOptions(argv,
      OPTIONS.search_path = a
    elif o in ("-s", "--device_specific"):
      OPTIONS.device_specific = a
    elif o in ("-x" "--extra"):
    elif o in ("-x", "--extra"):
      key, value = a.split("=", 1)
      OPTIONS.extras[key] = value
    else: