firagne commited on
Commit
8598451
·
1 Parent(s): 439977e

fix wrong param

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -92,7 +92,7 @@ def process(file_name, embed_html_all):
92
  writer = csv.writer(w)
93
  for top in tops:
94
  file = os.path.splitext(os.path.basename(top))[0]
95
- writer.writerow(dict_catalog[top].values())
96
 
97
  return (embed_html_all, output_csv, *formated)
98
  """except:
 
92
  writer = csv.writer(w)
93
  for top in tops:
94
  file = os.path.splitext(os.path.basename(top))[0]
95
+ writer.writerow(dict_catalog[file].values())
96
 
97
  return (embed_html_all, output_csv, *formated)
98
  """except: