summaryrefslogtreecommitdiffstats
path: root/data/combine.py
diff options
context:
space:
mode:
authorThibaut Horel <thibaut.horel@gmail.com>2012-02-21 21:17:00 -0800
committerThibaut Horel <thibaut.horel@gmail.com>2012-02-21 21:17:00 -0800
commit460e81d0d1f49f92bbbaa0f7c070a0e7be45d07a (patch)
tree7c28309043786a214dec7b2ebefbf7225b54aae0 /data/combine.py
parent7f22fb7f2981b5b9d67e4181299462df3b1f6964 (diff)
downloadkinect-460e81d0d1f49f92bbbaa0f7c070a0e7be45d07a.tar.gz
Fix a small error in combine.py
The script file shouldn't be printed to the output.
Diffstat (limited to 'data/combine.py')
-rwxr-xr-xdata/combine.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/combine.py b/data/combine.py
index 2793a6d..b969935 100755
--- a/data/combine.py
+++ b/data/combine.py
@@ -3,7 +3,7 @@ import os
import sys
runs = []
-for arg in sys.argv:
+for arg in sys.argv[1:]:
runs += [[open(arg), arg.split('/')[-2]]]
for lines, sub_dir in runs: