Skip to content

Commit

Permalink
Merge pull request #365 from Crane-Mocker/main
Browse files Browse the repository at this point in the history
Fixed cli crunch_artifacts() parameters passing. Changed -t error msg.
  • Loading branch information
abrignoni authored Apr 16, 2023
2 parents 61b0203 + 52f4c5a commit 1261074
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aleapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def main():
return

if args.t is None:
parser.error('No INPUT file or folder selected. Run the program again.')
parser.error('No type parameter -t. Run the program again.')
return

if not os.path.exists(input_path):
Expand Down Expand Up @@ -96,7 +96,7 @@ def main():


def crunch_artifacts(
plugins: typing.Sequence[plugin_loader.PluginSpec], extracttype, input_path, out_params, ratio, wrap_text, casedata):
plugins: typing.Sequence[plugin_loader.PluginSpec], extracttype, input_path, out_params, ratio, wrap_text, loader, casedata):
start = process_time()

logfunc('Procesing started. Please wait. This may take a few minutes...')
Expand Down

0 comments on commit 1261074

Please sign in to comment.