]> git.decadent.org.uk Git - dak.git/commit
Stop using undefined reject function in check_dsc_files
authorGuillem Jover <guillem@debian.org>
Thu, 11 Feb 2016 09:27:13 +0000 (10:27 +0100)
committerAnsgar Burchardt <ansgar@debian.org>
Tue, 12 Apr 2016 06:40:34 +0000 (08:40 +0200)
commit9395800a53935a9bed300bc16d2e3c2440d3d7ac
tree956a424e692ec4b5447eb1ebea12a61d97eb3e74
parent996aa5d9c1401ea80adfc6a89622cf252272413f
Stop using undefined reject function in check_dsc_files

When there's an unknown file in a source package, the function spits
this:

  ,---
  Processing raised an exception: global name 'reject' is not defined.
  Traceback (most recent call last):
    File "/srv/ftp-master.debian.org/dak/dak/daklib/archive.py", line 966, in check
      chk().check(self)
    File "/srv/ftp-master.debian.org/dak/dak/daklib/checks.py", line 497, in check
      rejects = utils.check_dsc_files(dsc_fn, control, source.files.keys())
    File "/srv/ftp-master.debian.org/dak/dak/daklib/utils.py", line 343, in check_dsc_files
      reject("%s: unexpected source file '%s'" % (dsc_filename, f))
  NameError: global name 'reject' is not defined
  `---

Just set the reject message and break from the loop.
daklib/utils.py