From d3b1a15915871f819cfa3eaf4f08854c928e97e7 Mon Sep 17 00:00:00 2001 From: "Ira W. Snyder" Date: Tue, 26 Dec 2006 22:52:46 -0800 Subject: [PATCH] [RARSLAVE] Fix interactive deletion Adds the accidentally ommitted list of files to the prompt that gets displayed during interactive deletion. Signed-off-by: Ira W. Snyder --- rarslave.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rarslave.py b/rarslave.py index f40ac9c..2096a97 100644 --- a/rarslave.py +++ b/rarslave.py @@ -420,6 +420,7 @@ def delete_list (dir, files, interactive=False): if interactive: while not done: print 'Do you want to delete the following?:' + printlist (files) s = raw_input ('Delete [y/N]: ').upper() if s in valid_y + valid_n: -- 2.25.1