From a0579d3308687d3e03573d7d9e947392061140b6 Mon Sep 17 00:00:00 2001 From: tlatorre Date: Wed, 25 Sep 2019 10:27:16 -0500 Subject: fix another small bug in zdab-reprocess --- utils/zdab-reprocess | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utils/zdab-reprocess') diff --git a/utils/zdab-reprocess b/utils/zdab-reprocess index 0df2274..70332fa 100755 --- a/utils/zdab-reprocess +++ b/utils/zdab-reprocess @@ -374,7 +374,7 @@ if __name__ == '__main__': root, ext = splitext(tail) - output = "%s_%s.%s" % (root,args.suffix,ext) + output = "%s_%s%s" % (root,args.suffix,ext) if args.dir: output = os.path.join(args.dir,output) -- cgit