mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-21 00:19:42 +02:00
use in instead of .find()
This commit is contained in:
@ -73,7 +73,7 @@ import jc.parsers.universal
|
|||||||
|
|
||||||
|
|
||||||
class info():
|
class info():
|
||||||
version = '1.1'
|
version = '1.2'
|
||||||
description = 'df command parser'
|
description = 'df command parser'
|
||||||
author = 'Kelly Brazil'
|
author = 'Kelly Brazil'
|
||||||
author_email = 'kellyjonbrazil@gmail.com'
|
author_email = 'kellyjonbrazil@gmail.com'
|
||||||
@ -135,7 +135,7 @@ def process(proc_data):
|
|||||||
|
|
||||||
# change any entry for key with '_blocks' in the name to int
|
# change any entry for key with '_blocks' in the name to int
|
||||||
for k in entry:
|
for k in entry:
|
||||||
if str(k).find('_blocks') != -1:
|
if '_blocks' in str(k):
|
||||||
try:
|
try:
|
||||||
blocks_int = int(entry[k])
|
blocks_int = int(entry[k])
|
||||||
entry[k] = blocks_int
|
entry[k] = blocks_int
|
||||||
|
Reference in New Issue
Block a user