diff options
author | tlatorre <tlatorre@uchicago.edu> | 2019-09-25 10:27:16 -0500 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2019-09-25 10:27:16 -0500 |
commit | a0579d3308687d3e03573d7d9e947392061140b6 (patch) | |
tree | 6f9be3d6f3ec9dfd48b46687affe59a8ba9cfbd3 /utils/zdab-reprocess | |
parent | e5873f41eedeb23911eee7f25edb6907474971a5 (diff) | |
download | sddm-a0579d3308687d3e03573d7d9e947392061140b6.tar.gz sddm-a0579d3308687d3e03573d7d9e947392061140b6.tar.bz2 sddm-a0579d3308687d3e03573d7d9e947392061140b6.zip |
fix another small bug in zdab-reprocess
Diffstat (limited to 'utils/zdab-reprocess')
-rwxr-xr-x | utils/zdab-reprocess | 2 |
1 files changed, 1 insertions, 1 deletions
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) |