From c182a8853fa50faac3bb3ee8760ce3081f36ac83 Mon Sep 17 00:00:00 2001 From: Tim Bowers Date: Mon, 21 Mar 2016 19:33:15 +0000 Subject: [PATCH] Update convertor.py --- sharpener/convertor.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sharpener/convertor.py b/sharpener/convertor.py index e4f4118..cd4b404 100644 --- a/sharpener/convertor.py +++ b/sharpener/convertor.py @@ -2,8 +2,8 @@ -def convert(source_file, destination_file ): +def convert(source_file, destination_file, amount ): output = check_output(["convert", source_file, - "-sharpen","0x1", - destination_file], stderr=STDOUT) \ No newline at end of file + "-sharpen", amount, + destination_file], stderr=STDOUT)