[DvdSubtitle] - Fix unnecessary escape.

This commit is contained in:
Ivandro Ismael 2016-10-29 16:22:05 +01:00
parent dfda6ea8fa
commit e9e528fdfb

View File

@ -8,7 +8,7 @@ namespace Nikse.SubtitleEdit.Core.SubtitleFormats
public class DvdSubtitle : SubtitleFormat
{
private static readonly Regex RegexTimeCodes = new Regex(@"^\{T\ \d+:\d+:\d+:\d+$", RegexOptions.Compiled);
private static readonly Regex RegexTimeCodes = new Regex(@"^\{T \d+:\d+:\d+:\d+$", RegexOptions.Compiled);
public override string Extension
{