awacke1 commited on
Commit
0245c3a
·
1 Parent(s): dbcba60

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -329,7 +329,7 @@ def create_file(filename, prompt, response, should_save=True):
329
 
330
  # Save the combined content to a Markdown file
331
  if should_save:
332
- with open(f"{base_filename}-Combined.md", 'w') as file:
333
  file.write(combined_content)
334
 
335
 
 
329
 
330
  # Save the combined content to a Markdown file
331
  if should_save:
332
+ with open(f"{base_filename}.md", 'w') as file:
333
  file.write(combined_content)
334
 
335