lpcmanager

Parents 7fb8d30cd2e2
Children 3f3084fca4ee
Fixed bug when opening project with path containing non-ascii characters
--- a/LPCManager.py Wed May 15 22:15:05 2013 +0200
+++ b/LPCManager.py Wed Jul 03 11:28:12 2013 +0200
@@ -2233,6 +2233,9 @@
Log = StdoutPseudoFile(port)
+ if projectOpen is not None:
+ projectOpen = DecodeFileSystemPath(projectOpen, False)
+
CTR = LPCProjectController(None, Log, buildpath)
if projectOpen is not None and os.path.isdir(projectOpen):
result = CTR.LoadProject(projectOpen)