From 25493654ffb4e834086a5bbcc18c6bd254214906 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Tue, 4 Aug 2015 16:36:34 -0700 Subject: [PATCH] Removed semi-colon --- src/NzbDrone.Core/Download/Clients/rTorrent/RTorrentSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrentSettings.cs b/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrentSettings.cs index 8574a7096..5983c3e40 100644 --- a/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrentSettings.cs +++ b/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrentSettings.cs @@ -11,7 +11,7 @@ namespace NzbDrone.Core.Download.Clients.RTorrent { RuleFor(c => c.Host).ValidHost(); RuleFor(c => c.Port).InclusiveBetween(0, 65535); - RuleFor(c => c.TvCategory).NotEmpty(); + RuleFor(c => c.TvCategory).NotEmpty() .WithMessage("A category is recommended") .AsWarning(); }