Changeset 2098


Ignore:
Timestamp:
Feb 5, 2009, 1:47:19 PM (15 years ago)
Author:
price
Message:

in invirt-remote-listvms, ignore another way VMs can disappear

Location:
trunk/packages/invirt-remote
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/invirt-remote/debian/changelog

    r2097 r2098  
     1invirt-remote (0.3.2) unstable; urgency=low
     2
     3  * in invirt-remote-listvms, ignore another way VMs can disappear
     4
     5 -- Greg Price <price@mit.edu>  Thu, 05 Feb 2009 13:43:46 -0500
     6
    17invirt-remote (0.3.1) unstable; urgency=low
    28
  • trunk/packages/invirt-remote/host/usr/sbin/invirt-listvms

    r1822 r2098  
    1818        except (xs.Error, TypeError):
    1919            continue # went down since we started
    20         if name.startswith('d_'):
     20        if name is not None and name.startswith('d_'):
    2121            name = name[2:]
    2222            vms[name] = data
Note: See TracChangeset for help on using the changeset viewer.