GHC 2019-10-13

1 comment.

, https://git.io/Je8kG in namboy94/xdcc-dl
Option --silent defined twice
=============================

This is most likely just unfortunate timing, but I just needed to download some files over XDCC and found your tool, and upon installing v3.3.0 (with puffotter dep v0.5.0), I was greeted with

```console
$ xdcc-dl -h
...
argparse.ArgumentError: argument --silent: conflicting option string: --silent
```

Apparently you added `--silent` to `puffotter.init.argparse_add_verbosity` in puffotter v0.5.0 but the option is still defined manually here. After removing `--silent` here the program worked flawlessly.

You're likely aware of this but I figured I'd throw a bug report your way just in case.