Skip to content

Commit

Permalink
Update LKE.py
Browse files Browse the repository at this point in the history
  • Loading branch information
PinjiaHe committed Jul 22, 2019
1 parent a10f54c commit ce69a5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logparser/LKE/LKE.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def mergeLists(initGroup,flatLogLineGroups):
#find out whether a list contained a list
def listContained(group):
for i in range(len(group)):
if str(type(group[i]))=="<type 'list'>":
if type(group[i])==list:
return True
return False

Expand Down

0 comments on commit ce69a5b

Please sign in to comment.