aboutsummaryrefslogtreecommitdiffstats
path: root/lib/find_devices
diff options
context:
space:
mode:
Diffstat (limited to 'lib/find_devices')
-rwxr-xr-xlib/find_devices3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/find_devices b/lib/find_devices
index 6a56c03..0b32eac 100755
--- a/lib/find_devices
+++ b/lib/find_devices
@@ -17,4 +17,5 @@ for dev in devs:
path = str(dev.Get('', 'DeviceFile'))
vend = str(dev.Get('', 'DriveVendor'))
model = str(dev.Get('', 'DriveModel'))
- print vend + ' ' + model + ', ' +path
+ size = str(dev.Get('', 'DeviceSize'))
+ print vend + ' ' + model + ', ' +path+', ' + size