1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-25 00:37:31 +02:00

Change line in blkid.py to trigger CI

This commit is contained in:
philippeitis
2020-03-04 16:17:58 -08:00
committed by GitHub
parent 9b148e0ba3
commit e4eab4641a

View File

@ -150,8 +150,7 @@ def process(proc_data):
for key in int_list: for key in int_list:
if key in entry: if key in entry:
try: try:
key_int = int(entry[key]) entry[key] = int(entry[key])
entry[key] = key_int
except (ValueError): except (ValueError):
entry[key] = None entry[key] = None