Spaces:
Running
Running
Moibe
commited on
Commit
•
08e132f
1
Parent(s):
3bca149
Fix paths
Browse files
app.py
CHANGED
@@ -16,8 +16,7 @@ def greet(input1, input2):
|
|
16 |
|
17 |
path_video = input2
|
18 |
path_parts = path_video.split("\\")
|
19 |
-
|
20 |
-
# Obtenemos todos los segmentos de la dirección separados por "\"
|
21 |
path_bueno = "\\".join(path_parts[0:len(path_parts) - 2])
|
22 |
|
23 |
print("Path bueno:")
|
|
|
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 |
|
22 |
print("Path bueno:")
|