Daniel Gil-U Fuhge commited on
Commit
bb2291a
·
1 Parent(s): b135ade

adjust paths

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -21,6 +21,6 @@ if uploaded_file is not None:
21
  st.success("Saved File")
22
  sys.setrecursionlimit(1500)
23
  animateLogo(path, targetPath)
24
- with open(path, "rb") as file:
25
  st.download_button('Download animated SVG', data=file, file_name=uploaded_file.name[:-4]+"_animated.svg")
26
 
 
21
  st.success("Saved File")
22
  sys.setrecursionlimit(1500)
23
  animateLogo(path, targetPath)
24
+ with open(targetPath, "rb") as file:
25
  st.download_button('Download animated SVG', data=file, file_name=uploaded_file.name[:-4]+"_animated.svg")
26