Skip to content
This repository has been archived by the owner on Jan 14, 2020. It is now read-only.

Commit

Permalink
Added missing )
Browse files Browse the repository at this point in the history
  • Loading branch information
TrueSkrillor committed Jan 17, 2016
1 parent ae5b8ad commit b1c9431
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Vertretungsplan_Uploader/FtpTools.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}

Expand Down

0 comments on commit b1c9431

Please sign in to comment.