Stop printing arguments on invocation

This commit is contained in:
Danilo Bargen 2016-01-06 23:21:40 +01:00
commit bb72cd1a0f

View file

@ -104,7 +104,6 @@ fn main() {
let args: Args = Docopt::new(USAGE)
.and_then(|d| d.decode())
.unwrap_or_else(|e| e.exit());
println!("{:#?}", args);
// Show version and exit
if args.flag_version {