mirror of
https://github.com/nikdoof/tvorganise.git
synced 2026-01-31 01:58:20 +00:00
Added ignore for OS X Folder Icon
This commit is contained in:
@@ -106,8 +106,9 @@ r_valid_path = [
|
|||||||
# Regex to match valid, but not-to-be-processed files (dot-files, folder.jpg artwork)
|
# Regex to match valid, but not-to-be-processed files (dot-files, folder.jpg artwork)
|
||||||
###################################
|
###################################
|
||||||
decrappify = [
|
decrappify = [
|
||||||
|
re.compile("^Icon.{1}$"),
|
||||||
re.compile("(?=^[.]{1}.*)"),
|
re.compile("(?=^[.]{1}.*)"),
|
||||||
re.compile("folder.jpg"),
|
re.compile("^folder.jpg$"),
|
||||||
]
|
]
|
||||||
|
|
||||||
###################################
|
###################################
|
||||||
@@ -247,7 +248,7 @@ class Season:
|
|||||||
def __str__(self):
|
def __str__(self):
|
||||||
out = "\tSeason %s\n" % (self.season_number)
|
out = "\tSeason %s\n" % (self.season_number)
|
||||||
out += "\t\t"
|
out += "\t\t"
|
||||||
all_ep_nums = [cur_ep_num for cur_ep_num in self.episodes.keys()]
|
all_ep_nums = [cur_ep_num for cur_ep_num in self.episodes.keys() ]
|
||||||
out += "Episodes " + str(seq_display(all_ep_nums))
|
out += "Episodes " + str(seq_display(all_ep_nums))
|
||||||
return out
|
return out
|
||||||
#end __str__
|
#end __str__
|
||||||
|
|||||||
Reference in New Issue
Block a user