From 571407953ed48a0f4a365eb49ed10015c5be029f Mon Sep 17 00:00:00 2001 From: Arno Hautala Date: Wed, 25 Aug 2021 16:13:35 -0400 Subject: [PATCH] create podcast directory --- ipod-shuffle-4g.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipod-shuffle-4g.py b/ipod-shuffle-4g.py index bb19d0d..a96a436 100755 --- a/ipod-shuffle-4g.py +++ b/ipod-shuffle-4g.py @@ -623,7 +623,7 @@ class Shuffler(object): # remove existing voiceover files (they are either useless or will be overwritten anyway) for dirname in ('iPod_Control/Speakable/Playlists', 'iPod_Control/Speakable/Tracks'): shutil.rmtree(os.path.join(self.path, dirname), ignore_errors=True) - for dirname in ('iPod_Control/iTunes', 'iPod_Control/Music', 'iPod_Control/Speakable/Playlists', 'iPod_Control/Speakable/Tracks'): + for dirname in ('iPod_Control/iTunes', 'iPod_Control/Music', 'iPod_Control/Podcasts', 'iPod_Control/Speakable/Playlists', 'iPod_Control/Speakable/Tracks'): make_dir_if_absent(os.path.join(self.path, dirname)) def dump_state(self):