Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed cli crunch_artifacts() parameters passing. Changed -t error msg. #365

Merged
merged 1 commit into from
Apr 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fixed cli crunch_artifacts() parameters passing. Changed -t error msg.
  • Loading branch information
Crane-Mocker committed Apr 16, 2023
commit 52f4c5af51a597af0ada6ae365c6df8969eebbaa
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