Commit 8599b181 authored by vdberg's avatar vdberg
Browse files

debugging

parent 0349cd35
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -16,6 +16,7 @@ def load_output(dir='outputs', combine=False):
        with open(outfile, 'a', encoding='utf-8') as o:
            for p, d, fs in os.walk(dir):
                for i in fs:
                    print('reading {}'.format(i))
                    with open(os.path.join(p, i), encoding='utf-8') as i:
                        i_lines = i.readlines()[1:]
                    o.writelines(i_lines)