Skip to content

Commit

Permalink
Remove debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
Setsugennoao committed Oct 20, 2023
1 parent cc49f7c commit d3b6850
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions vspreview/plugins/vssource_load.ppy
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,10 @@ else:

if filepath.is_dir():
for file in filepath.glob(pattern):
print(file)
try:
parse_video_filepath(file)
set_output(source(file))
set_output(source(file), file.name)
except Exception:
...
else:
set_output(source(filepath))
set_output(source(filepath), filepath.name)

0 comments on commit d3b6850

Please sign in to comment.