Control: tags -1 + upstream confirmed
[...]
[...]
[...]
I'm looking at updating stdeb to 0.10 and can confirm that the
relevant code still seems to be in stdeb/util.py:
```
if 1:
# do dry run on apt-file
dry_run_args = args[:] + ['--dummy', '--non-interactive']
cmd = subprocess.Popen(dry_run_args, stderr=subprocess.PIPE)
returncode = cmd.wait()
if returncode:
err_output = cmd.stderr.read()
raise RuntimeError('Error running "apt-file search": ' +
err_output.strip())
```
It looks to me like if this code path is hit it will always error out.
I'm not sure how to trigger this code path though, and the commands
I've tested works fine....
Wanted to confirm the code is still around however. Tagging accordingly.
Someone should possibly bring this up with upstream if it hasn't already
been discussed.
Regards,
Andreas Henriksson