Moibe commited on
Commit
e634bf6
1 Parent(s): e23e921

Fixed slash

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -20,7 +20,8 @@ def greet(input1, input2):
20
  #Para HuggingFace
21
  path_parts = path_video.split("/")
22
  print("Imprimiendo path_parts: ", path_parts)
23
- path_bueno = "\\".join(path_parts[0:len(path_parts) - 2])
 
24
 
25
  print("Path bueno:")
26
  print(path_bueno)
 
20
  #Para HuggingFace
21
  path_parts = path_video.split("/")
22
  print("Imprimiendo path_parts: ", path_parts)
23
+ path_bueno = "/".join(path_parts[0:len(path_parts) - 2])
24
+ #path_bueno = path_bueno.replace("\\", "/")
25
 
26
  print("Path bueno:")
27
  print(path_bueno)