1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-23 00:29:59 +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:
if key in entry:
try:
key_int = int(entry[key])
entry[key] = key_int
entry[key] = int(entry[key])
except (ValueError):
entry[key] = None