Found another place where the Utf8-fix is required

This commit is contained in:
Matthias Dittrich 2012-07-01 01:38:48 +02:00 committed by Hylke Bons
parent c5c63636e2
commit b02d57d727

View file

@ -509,7 +509,7 @@ namespace SparkleLib.Git {
foreach (string line in lines) {
string conflicting_path = line.Substring (3);
conflicting_path = conflicting_path.Trim ("\"".ToCharArray ());
conflicting_path = this.EnsureSpecialCharacters (conflicting_path);
SparkleHelpers.DebugInfo ("Git", Name + " | Conflict type: " + line);