Changeset 453

Show
Ignore:
Timestamp:
Wed Apr 30 13:20:00 2008
Author:
giovannibajo
Message:

Remove a FIXME (the exception is valid)

Files:

Legend:

Unmodified
Added
Removed
Modified
  • trunk/iu.py

    r449 r453  
    171 171                     #hkey = win32api.RegOpenKeyEx(root, subkey, 0, KEY_ALL_ACCESS)  
    172 172                     hkey = win32api.RegOpenKeyEx(root, subkey, 0, KEY_READ)  
    173                   except Exception, e:  
    174                       print "FIXME: RegOpenKeyEx Exception", e  
      173                 except Exception:  
      174                     # If the key does not exist, simply try the next one.  
      175                     pass  
    175 176                 else:  
    176 177                     numsubkeys, numvalues, lastmodified = win32api.RegQueryInfoKey(hkey)