From 2a095e26adb5663dfb598497d83c26a2ab68b1ff Mon Sep 17 00:00:00 2001 From: Julien Rioux Date: Mon, 16 Sep 2013 23:43:00 +0200 Subject: [PATCH] Fix mass-link for python3 compatibility. --- patches/mass-link.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/mass-link.py b/patches/mass-link.py index e75def2..4fd8b97 100755 --- a/patches/mass-link.py +++ b/patches/mass-link.py @@ -88,4 +88,4 @@ def force_link (src,dest): raise os.utime (dest, None) -map (force_link, sourcefiles, destfiles) +list (map (force_link, sourcefiles, destfiles))