]> git.ipfire.org Git - thirdparty/patchwork.git/commit
parsemail: Fix return value for find_content error case
authorJeremy Kerr <jk@ozlabs.org>
Mon, 28 Mar 2016 03:31:38 +0000 (11:31 +0800)
committerStephen Finucane <stephen.finucane@intel.com>
Tue, 29 Mar 2016 08:57:16 +0000 (09:57 +0100)
commit070c1f34aeb7c3f55de9a53e6278699e531d0bde
tree8f30f12694c8e203d5ff589454d7e7925860b657
parent7ffe5d7cfac61e972643881ced2251d17d2bb363
parsemail: Fix return value for find_content error case

If we fail to decode a message payload, we'll fail with the following:

  Traceback (most recent call last):
    File "./patchwork/bin/parsemail.py", line 563, in <module>
      sys.exit(main(sys.argv))
    File "./patchwork/bin/parsemail.py", line 553, in main
      return parse_mail(mail, args['list_id'])
    File "./patchwork/bin/parsemail.py", line 464, in parse_mail
      (patch, comment, filenames) = find_content(project, mail)
  ValueError: need more than 2 values to unpack

- as the error condition for find_content only returns a 2-tuple. This
change fixes the error case to the 3-tuple return type.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Acked-by: Stephen Finucane <stephen.finucane@intel.com>
patchwork/bin/parsemail.py