Skip to content

Commit 445f881

Browse files
committed
Few format() fixes
1 parent c713113 commit 445f881

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

commands/delete.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def run(self, paths=None, *args, **kwargs):
4343
confirm_title = "Confirm"
4444
confirm_subtitle = "Send {}item{} to trash".format(nitems, extras)
4545
cancel_title = "Cancel All (Select an individual file to remove it from the deletion list)"
46-
cancel_subtitle = "Cancel deletion of {0}item{1}".format(nitems, extras)
46+
cancel_subtitle = "Cancel deletion of {}item{}".format(nitems, extras)
4747

4848
paths_to_display = [
4949
[confirm_title, confirm_subtitle],

0 commit comments

Comments
 (0)