Under Debian at least, this code at around line 374:
if wx.wxPlatform == '__WXMAC__':
args = [filename]
else:
args = ['"' + filename + '"']
doesn't work properly. The codeEditor will get opened,
but it won't be editing the file as expected. However,
if I replace that code with just
args = [filename]
everything does work. I've tested that this code works
with files containing spaces, as well.
Ken Pronovici <pronovic@ieee.org>