From 62ce6980a3135e6d335c0dbcb8c9c757161274a9 Mon Sep 17 00:00:00 2001 From: Erik Osheim Date: Tue, 1 Sep 2020 09:10:18 -0400 Subject: [PATCH] fix cleanse for python3 --- cleanse | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cleanse b/cleanse index 629a41e..34dfe8b 100755 --- a/cleanse +++ b/cleanse @@ -15,7 +15,7 @@ stanzas = ' -o '.join(["-name '%s'" % x for x in patterns]) cmd = "find . -type f \\( %s \\) -print" % stanzas if opts.fake: - print "files that would be deleted:" + print("files that would be deleted:") else: cmd += " -exec rm {} ';'";