Moibe commited on
Commit
78f1c7e
1 Parent(s): 08e132f

Hotfix path @ HugginFace

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -15,7 +15,10 @@ def greet(input1, input2):
15
  print(input2)
16
 
17
  path_video = input2
18
- path_parts = path_video.split("\\")
 
 
 
19
  print("Imprimiendo path_parts: ", path_parts)
20
  path_bueno = "\\".join(path_parts[0:len(path_parts) - 2])
21
 
 
15
  print(input2)
16
 
17
  path_video = input2
18
+ #Para local.
19
+ #path_parts = path_video.split("\\")
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