I'm using gitso (0.6) under Ubuntu 10.04 Lucid Lynx and encountered the
following problem.
After pushing Start (either for Get Help or Give Support) gitso terminates
with the terminal message:
python: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0.
By searching the internet I also found a solution. It's a problem in
wxPython: UI elements must not be changed from different Python threads. To
fix it, change file GitsoThread.py:
• add import wx
• replace all calls to
self.window.setMessage( <string>, <bool>)
with
wx.CallAfter( self.window.setMessage , <string>, <bool>)
Best regards,
Steffen
Original issue reported on code.google.com by steffeng...@yahoo.de on 19 Apr 2010 at 5:14
Original issue reported on code.google.com by
steffeng...@yahoo.de
on 19 Apr 2010 at 5:14