Jump to content

nsa666

Dormant
  • Posts

    8
  • Joined

  • Last visited

    Never

Posts posted by nsa666

  1. i think i found the bug.

    in machineCom.py line 30:

     


    try:
    key=_winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE,"HARDWARE\\DEVICEMAP\\SERIALCOMM")
    i=0
    while True:
    values = _winreg.EnumValue(key, i)
    if not forAutoDetect or 'USBSER' in values[0]:
    baselist+=[values[1]]
    i+=1
    except:

    the reg key looks like:

    com-portsjksyv.png

    The forAutoDetect is True and 'USBSER' is false. The list remains empty. The detection fails. Removing the "not" in front of forAutoDetect seems to help. but i don't know what side effects it has.

     

×
×
  • Create New...