From b1c9431da66e82c449d6b1eadf315238de31b87f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20B=C3=A4umer?= Date: Sun, 17 Jan 2016 13:25:16 +0100 Subject: [PATCH] Added missing ) --- Vertretungsplan_Uploader/FtpTools.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vertretungsplan_Uploader/FtpTools.cs b/Vertretungsplan_Uploader/FtpTools.cs index 414ee50..6303164 100644 --- a/Vertretungsplan_Uploader/FtpTools.cs +++ b/Vertretungsplan_Uploader/FtpTools.cs @@ -32,7 +32,7 @@ public void UploadFile(string pLocalFile, string pRemoteFile) try { ftpWebResponse = (FtpWebResponse)ftpWebRequest.GetResponse(); } catch (WebException ex) { Debug.WriteLine(string.Format("A webexception occured while trying to upload {0}: {1}", pLocalFile, ex.Message), "FTP-Tools"); return; } - Debug.WriteLine(string.Format("Uploaded file successfully (response status: {0})" ,ftpWebResponse.StatusDescription, "FTP-Tools"); + Debug.WriteLine(string.Format("Uploaded file successfully (response status: {0})" ,ftpWebResponse.StatusDescription, "FTP-Tools")); ftpWebResponse.Close(); }