almo03 commited on
Commit
829bdf3
·
verified ·
1 Parent(s): 890a1ee

correct log path

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -204,7 +204,7 @@ with gr.Blocks() as demo:
204
  with gr.Row():
205
  log_output = gr.Textbox(label="BoltzGen Log Output", lines=10)
206
  run_button.click(
207
- lambda: find_log_file("/tmp/output").read_text() if find_log_file("/tmp/output") else "No log file found.",
208
  inputs=[],
209
  outputs=log_output
210
  )
 
204
  with gr.Row():
205
  log_output = gr.Textbox(label="BoltzGen Log Output", lines=10)
206
  run_button.click(
207
+ lambda: find_log_file("/tmp").read_text() if find_log_file("/tmp") else "No log file found.",
208
  inputs=[],
209
  outputs=log_output
210
  )