Fixed bracket in logging message.

This commit is contained in:
Mark McDowall 2012-02-11 00:16:26 -08:00
parent 308fd11c83
commit cc8f8bec06
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ namespace NzbDrone.Core.Providers.DownloadClients
if (_diskProvider.FileExists(filename))
{
//Return true so a lesser quality is not returned.
logger.Info("NZB already exists on disk: {0)", filename);
logger.Info("NZB already exists on disk: {0}", filename);
return true;
}