@ -885,7 +885,9 @@ Remove it if you want it to be renamed (again, or at least let it try again)
#If information is not available, we don't want the tag in the filename
#If information is not available, we don't want the tag in the filename
replaced = replaced . replace ( ' < ' + x + ' > ' , ' ' )
replaced = replaced . replace ( ' < ' + x + ' > ' , ' ' )
replaced = self . replaceDoubles ( replaced . lstrip ( ' . ' ) )
if self . conf ( ' replace_doubles ' ) :
replaced = self . replaceDoubles ( replaced . lstrip ( ' . ' ) )
for x , r in replacements . items ( ) :
for x , r in replacements . items ( ) :
if x in [ ' thename ' , ' namethe ' ] :
if x in [ ' thename ' , ' namethe ' ] :
replaced = replaced . replace ( six . u ( ' < %s > ' ) % toUnicode ( x ) , toUnicode ( r ) )
replaced = replaced . replace ( six . u ( ' < %s > ' ) % toUnicode ( x ) , toUnicode ( r ) )
@ -1343,6 +1345,14 @@ config = [{
' options ' : rename_options
' options ' : rename_options
} ,
} ,
{
{
' advanced ' : True ,
' name ' : ' replace_doubles ' ,
' type ' : ' bool ' ,
' label ' : ' Consider Missing Data ' ,
' description ' : ' Attempt to clean up double separaters due to missing data for fields ' ,
' default ' : True
} ,
{
' name ' : ' unrar ' ,
' name ' : ' unrar ' ,
' type ' : ' bool ' ,
' type ' : ' bool ' ,
' description ' : ' Extract rar files if found. ' ,
' description ' : ' Extract rar files if found. ' ,