astro21 commited on
Commit
6b46871
·
verified ·
1 Parent(s): a479672

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -41,7 +41,7 @@ def summarize_text(input_text):
41
 
42
  def summarize_text_file(file):
43
  if file is not None:
44
- content = file.read()
45
  return summarize_text(content)
46
 
47
 
 
41
 
42
  def summarize_text_file(file):
43
  if file is not None:
44
+ content = str(file.read(), 'utf-8')
45
  return summarize_text(content)
46
 
47