Trim the name, it causes issues

This commit is contained in:
Matt Nadareski
2016-05-05 11:17:22 -07:00
parent 1e1d247f4f
commit afe719073f
2 changed files with 2 additions and 2 deletions

View File

@@ -350,8 +350,8 @@ Make a selection:
return;
}
path += Path.DirectorySeparatorChar + system;
name = system;
path += Path.DirectorySeparatorChar + system.Trim();
name = system.Trim();
}
else
{