Comment #5 on issue 248 by [email protected]: Solfege stopped working on Ubuntu 11.10 http://code.google.com/p/solfege/issues/detail?id=248
I made the following modifications: changed /usr/share/solfege/solfege/esel.py, line 126 self.set_size_request(w, h if h > self.m_min_height else self.m_min_height) to: self.set_size_request(w, int(h) if h > self.m_min_height else self.m_min_height) and changed /usr/share/solfege/solfege/abstract.py, line 547 if getattr(self, 'g_flashbar'): to: if hasattr(self, 'g_flashbar'): And changed python2.6 back to python. Now it works for me as usual. ------------------------------------------------------------------------------ The demand for IT networking professionals continues to grow, and the demand for specialized networking skills is growing even more rapidly. Take a complimentary Learning@Cisco Self-Assessment and learn about Cisco certifications, training, and career opportunities. http://p.sf.net/sfu/cisco-dev2dev _______________________________________________ Solfege-devel mailing list To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe", or visit https://lists.sourceforge.net/lists/listinfo/solfege-devel
