From f7e9ea804931f9d1a07519054781e58bff543a64 Mon Sep 17 00:00:00 2001 From: arcan1s Date: Fri, 13 Jun 2014 16:40:47 +0400 Subject: [PATCH] fix path --- combine-qti/combine-qti.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/combine-qti/combine-qti.py b/combine-qti/combine-qti.py index 8765cfd..1f0b663 100755 --- a/combine-qti/combine-qti.py +++ b/combine-qti/combine-qti.py @@ -83,7 +83,7 @@ if __name__ == "__main__": input = [] if (args.dir): if (os.path.isdir(args.dir)): - input = [file for file in os.listdir(args.dir) if (os.path.splitext(file)[1] == ".qti")] + input = [os.path.join(args.dir, file) for file in os.listdir(args.dir) if (os.path.splitext(file)[1] == ".qti")] else: if (args.input): for file in args.input.split(','):