com3dian commited on
Commit
2c73cdd
·
1 Parent(s): 63f606a

fix filename

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -33,9 +33,8 @@ if uploaded_file is not None:
33
  if not file.endswith('.pdf'):
34
  st.write(f"The other file in the 'uploads' folder is: {file}")
35
  break
36
-
37
  monkeyReader = reader.MonkeyReader('x2d')
38
- outline = monkeyReader.readOutline(file)
39
 
40
  for pre, fill, node in outline:
41
  st.write("%s%s" % (pre, node.name))
 
33
  if not file.endswith('.pdf'):
34
  st.write(f"The other file in the 'uploads' folder is: {file}")
35
  break
 
36
  monkeyReader = reader.MonkeyReader('x2d')
37
+ outline = monkeyReader.readOutline(folder_path + file)
38
 
39
  for pre, fill, node in outline:
40
  st.write("%s%s" % (pre, node.name))