From 6bf5ba7a10bed789c5e499994434fad771306066 Mon Sep 17 00:00:00 2001 From: weichao Date: Wed, 18 Sep 2019 10:00:12 +0800 Subject: [PATCH] fix --output input error --- SameCodeFinder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SameCodeFinder.py b/SameCodeFinder.py index 1528976..705bc94 100644 --- a/SameCodeFinder.py +++ b/SameCodeFinder.py @@ -54,7 +54,7 @@ def main(): gb_min_linecount = int(arg_arr[1]) elif arg.startswith("--output="): arg_arr = arg.split("=") - gb_output = int(arg_arr[1]) + gb_output = arg_arr[1] if not suffix: print "You must assign a suffix. eg: \".m\" \".java\""