Spaces:
Running
Running
jhj0517
commited on
Commit
•
4c2c99c
1
Parent(s):
36b531c
fix name truncation
Browse files
modules/subtitle_manager.py
CHANGED
@@ -122,7 +122,6 @@ def safe_filename(name):
|
|
122 |
from app import _args
|
123 |
INVALID_FILENAME_CHARS = r'[<>:"/\\|?*\x00-\x1f]'
|
124 |
safe_name = re.sub(INVALID_FILENAME_CHARS, '_', name)
|
125 |
-
print(f"_args.colab: {_args.colab}")
|
126 |
if not _args.colab:
|
127 |
return safe_name
|
128 |
# Truncate the filename if it exceeds the max_length (20)
|
|
|
122 |
from app import _args
|
123 |
INVALID_FILENAME_CHARS = r'[<>:"/\\|?*\x00-\x1f]'
|
124 |
safe_name = re.sub(INVALID_FILENAME_CHARS, '_', name)
|
|
|
125 |
if not _args.colab:
|
126 |
return safe_name
|
127 |
# Truncate the filename if it exceeds the max_length (20)
|