mirror of
https://github.com/tubearchivist/tubearchivist.git
synced 2024-12-01 16:00:13 +00:00
handle empty channel migration cleanup
This commit is contained in:
parent
8a7cb8bc6f
commit
2a60360f4a
@ -178,6 +178,9 @@ class ChannelMigration:
|
||||
|
||||
def delete_old(self, all_videos):
|
||||
"""delete old folder path if empty"""
|
||||
if not all_videos:
|
||||
return
|
||||
|
||||
channel_name = os.path.split(all_videos[0]["media_url"])[0]
|
||||
old_path = os.path.join(self.videos, channel_name)
|
||||
if os.path.exists(old_path) and not os.listdir(old_path):
|
||||
|
Loading…
Reference in New Issue
Block a user