adrianpierce commited on
Commit
df0388b
1 Parent(s): d4a01d9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -155,7 +155,7 @@ if st.session_state.gpt_response is not None:
155
  st.subheader("Instructions:")
156
  try:
157
  md_instructions = ''
158
- for instruction in loaded_recipe['instructions'].split('\n'):
159
  md_instructions += "- " + instruction + "\n"
160
  st.markdown(md_instructions)
161
  except:
 
155
  st.subheader("Instructions:")
156
  try:
157
  md_instructions = ''
158
+ for instruction in loaded_recipe['instructions'].split('; '):
159
  md_instructions += "- " + instruction + "\n"
160
  st.markdown(md_instructions)
161
  except: