Revision 1122eb25 lib/hypervisor/hv_chroot.py

b/lib/hypervisor/hv_chroot.py
97 97
    fh = open("/proc/mounts", "r")
98 98
    try:
99 99
      for line in fh:
100
        fstype, mountpoint, rest = line.split(" ", 2)
100
        _, mountpoint, _ = line.split(" ", 2)
101 101
        if (mountpoint.startswith(path) and
102 102
            mountpoint != path):
103 103
          data.append(mountpoint)

Also available in: Unified diff