# HG changeset patch # User Laurent Bessard # Date 1372843692 -7200 # Node ID 7fc0928030b6ae113df87610dcea19cfa6335eec # Parent 8a4783508ea9eb6e0e913c08966235c9c545a1ee Fixed bug when opening project with path containing non-ascii characters diff -r 8a4783508ea9 -r 7fc0928030b6 LPCManager.py --- 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)