removed UGuid leftovers.

This commit is contained in:
kay.one 2013-05-22 22:32:54 -07:00
parent 4da6654440
commit c357d062d3
3 changed files with 5 additions and 14 deletions

View file

@ -76,7 +76,7 @@ namespace NzbDrone.Core.Update
var startInfo = new ProcessStartInfo
{
FileName = _environmentProvider.GetUpdateClientExePath(),
Arguments = string.Format("{0} {1}", _processProvider.GetCurrentProcess().Id)
Arguments = _processProvider.GetCurrentProcess().Id.ToString()
};
var process = _processProvider.Start(startInfo);