<div dir="ltr">I tried to run MidiGraph but I get an error:<br><br>Traceback (most recent call last):<br>  File "./MidiGraph.py", line 7, in <module><br>    midigraph.main()<br>  File "/home/x/Documents/MidiGraph/midigraph/__init__.py", line 1007, in main<br>    win = PortGraph()<br>  File "/home/x/Documents/MidiGraph/midigraph/__init__.py", line 312, in __init__<br>    for btn in self.conn_type_btngroup.buttons():<br>AttributeError: 'PortGraph' object has no attribute 'conn_type_btngroup'<br><br></div><div class="gmail_extra"><br><div class="gmail_quote">On 27 September 2016 at 18:08, Clemens Ladisch <span dir="ltr"><<a href="mailto:clemens@ladisch.de" target="_blank">clemens@ladisch.de</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">Maurizio Berti wrote:<br>
> There are still some bugs (a strange export problem with sysex messages I'm<br>
> trying to solve)<br>
<br>
</span>Apparently, the length is not written:<br>
<br>
        elif isinstance(event, SysexEvent):<br>
            ret += chr(0xF0)<br>
            ret += str.join('', map(chr, event.data))<br>
            ret += chr(0xF7)<br>
<br>
(And the length includes the F7 bytes.  And I don't know if the data includes<br>
the F0 and F7 in both the Jack and ALSA interfaces.)<br>
<br>
<br>
Regards,<br>
Clemens<br>
______________________________<wbr>_________________<br>
Linux-audio-user mailing list<br>
<a href="mailto:Linux-audio-user@lists.linuxaudio.org">Linux-audio-user@lists.<wbr>linuxaudio.org</a><br>
<a href="http://lists.linuxaudio.org/listinfo/linux-audio-user" rel="noreferrer" target="_blank">http://lists.linuxaudio.org/<wbr>listinfo/linux-audio-user</a><br>
</blockquote></div><br></div>