From ad27a1dec396d3fe31c9df832af882f5c75dfbe9 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Tue, 2 Mar 2010 13:55:11 +0000 Subject: [PATCH] no, followlink option is only in python 2.6 :( --- tools/station.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/station.py b/tools/station.py index b2a5c27..c673931 100644 --- a/tools/station.py +++ b/tools/station.py @@ -239,7 +239,7 @@ class Station(Thread): def get_playlist(self): file_list = [] - for root, dirs, files in os.walk(self.media_dir, followlinks=True): + for root, dirs, files in os.walk(self.media_dir): for file in files: s = file.split('.') ext = s[len(s)-1] -- 2.39.5