Gabesantos1007 commited on
Commit
34d6871
·
1 Parent(s): f7e2b9f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -47,7 +47,7 @@ def fetch_news_poster(poster_link):
47
  image = Image.open(io.BytesIO(raw_data))
48
  st.image(image, use_column_width=True)
49
  except:
50
- image = Image.open('./Meta/no_image.jpg')
51
  st.image(image, use_column_width=True)
52
 
53
 
 
47
  image = Image.open(io.BytesIO(raw_data))
48
  st.image(image, use_column_width=True)
49
  except:
50
+ image = Image.open('no_image.jpg')
51
  st.image(image, use_column_width=True)
52
 
53