Removed debugging
This commit is contained in:
parent
1209c8f550
commit
6af71eee30
|
|
@ -77,7 +77,7 @@ class BlockDevice():
|
||||||
|
|
||||||
#o = b''.join(sys_command('/usr/bin/lsblk -o name -J -b {dev}'.format(dev=dev)))
|
#o = b''.join(sys_command('/usr/bin/lsblk -o name -J -b {dev}'.format(dev=dev)))
|
||||||
o = b''.join(sys_command(f'/usr/bin/lsblk -J {self.path}'))
|
o = b''.join(sys_command(f'/usr/bin/lsblk -J {self.path}'))
|
||||||
print(self, 'partitions:', o)
|
#print(self, 'partitions:', o)
|
||||||
if b'not a block device' in o:
|
if b'not a block device' in o:
|
||||||
raise DiskError(f'Can not read partitions off something that isn\'t a block device: {self.path}')
|
raise DiskError(f'Can not read partitions off something that isn\'t a block device: {self.path}')
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue