We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cff0271 commit d89611dCopy full SHA for d89611d
library/playback/torrents_info.py
@@ -895,10 +895,10 @@ def gen_row(t):
895
if 0.0 < file.progress < args.delete_incomplete:
896
print(f"Deleting incomplete file: {file_path}")
897
file_utils.trash(args, str(file_path), detach=False)
898
- elif file.progress == 100.0:
+ elif file.progress == 1.0:
899
print(f"Keeping complete file: {file_path}")
900
else:
901
- print(f"Keeping {strings.percent(1 - (file.progress / 100))} incomplete file: {file_path}")
+ print(f"Keeping {strings.percent(1 - file.progress)} incomplete file: {file_path}")
902
break # Stop after deleting first valid path
903
904
alt_move_syntax = any(
0 commit comments