mirror of
https://github.com/zoriya/guessit.git
synced 2026-06-07 20:21:36 +00:00
Keep ",:;-" when cleaning value
This commit is contained in:
@@ -17,7 +17,7 @@ def cleanup(input_string):
|
||||
:rtype:
|
||||
"""
|
||||
for sep in seps:
|
||||
if sep not in ',;':
|
||||
if sep not in ',:;-':
|
||||
input_string = input_string.replace(sep, ' ')
|
||||
return re.sub(' +', ' ', strip(input_string))
|
||||
|
||||
|
||||
@@ -241,7 +241,7 @@
|
||||
format: DVD
|
||||
|
||||
? Movies/001 __ A classer/Fantomas se déchaine - Louis de Funès.avi
|
||||
: title: Fantomas se déchaine Louis de Funès
|
||||
: title: Fantomas se déchaine - Louis de Funès
|
||||
# TODO: Remove author from title, or add a new property like subtitle ...
|
||||
|
||||
? Movies/Comme une Image (2004)/Comme.Une.Image.FRENCH.DVDRiP.XViD-NTK.par-www.divx-overnet.com.avi
|
||||
@@ -308,7 +308,7 @@
|
||||
bonusTitle: Stunts
|
||||
|
||||
? OSS_117--Cairo,_Nest_of_Spies.mkv
|
||||
: title: OSS 117 Cairo, Nest of Spies
|
||||
: title: OSS 117--Cairo, Nest of Spies
|
||||
|
||||
? The Godfather Part 3.mkv
|
||||
? The Godfather Part III.mkv
|
||||
@@ -323,7 +323,7 @@
|
||||
: title: The Insider
|
||||
year: 1999
|
||||
bonusNumber: 2
|
||||
bonusTitle: 60 Minutes Interview 1996
|
||||
bonusTitle: 60 Minutes Interview-1996
|
||||
|
||||
? Rush.._Beyond_The_Lighted_Stage-x09-Between_Sun_and_Moon-2002_Hartford.mkv
|
||||
: title: Rush Beyond The Lighted Stage
|
||||
@@ -568,4 +568,9 @@
|
||||
year: 2012
|
||||
audioCodec: AC3
|
||||
audioProfile: HQ
|
||||
releaseGroup: Hive-CM8
|
||||
releaseGroup: Hive-CM8
|
||||
|
||||
? "Star Wars: Episode IV - A New Hope (2004) Special Edition.MKV"
|
||||
: title: "Star Wars: Episode IV - A New Hope"
|
||||
year: 2004
|
||||
edition: Special Edition
|
||||
Reference in New Issue
Block a user