Skip to content

Commit

Permalink
Merge pull request #198 from 0x483d/patch-1
Browse files Browse the repository at this point in the history
Fixed comparison issue
  • Loading branch information
Neo23x0 authored Sep 29, 2021
2 parents 6dc55e6 + 4a25df7 commit 73bf4fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion loki.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ def scan_path(self, path):

# Evaluations -------------------------------------------------------
# Evaluate size
if fileSize > (args.s * 1024):
if fileSize > (int(args.s) * 1024):
# Print files
do_intense_check = False

Expand Down

0 comments on commit 73bf4fb

Please sign in to comment.