1
0
Fork 0
mirror of https://github.com/snovvcrash/usbrip.git synced 2024-05-03 22:26:04 +02:00

Fix spelling (#23)

This commit is contained in:
Sam Free5ide 2021-01-06 02:05:46 +03:00
parent 8f2ff602e7
commit 77a5f79e27
No known key found for this signature in database
GPG Key ID: 9DB63BAC7ED736F9
3 changed files with 4 additions and 4 deletions

View File

@ -166,7 +166,7 @@ chmod -R 600 "${VAR_OPT}/log"
/usr/bin/printf "${W}>>>>${NC} Building Python virtual environment\n"
if /usr/bin/python3 -m venv "${OPT}/venv"; then
/usr/bin/printf "${G}>>>>${NC} Successfully builded Python virtual environment\n\n"
/usr/bin/printf "${G}>>>>${NC} Successfully built Python virtual environment\n\n"
else
/usr/bin/printf "${R}>>>>${NC} Failed to build Python virtual environment\n"
exit 1

View File

@ -288,7 +288,7 @@ def usbrip_arg_error(message=None, *, subparser=' '):
def usbrip_internal_error():
print(sys.argv[0].rsplit('/', 1)[-1] + ': Internal error occured', file=sys.stderr)
print(sys.argv[0].rsplit('/', 1)[-1] + ': Internal error occurred', file=sys.stderr)
sys.exit(1)

View File

@ -108,7 +108,7 @@ class USBEvents:
else:
if '-- Logs begin at' in journalctl_out:
print_info('Successfully runned journalctl')
print_info('Successfully ran journalctl')
filtered_history = _read_log_file(
None,
@ -117,7 +117,7 @@ class USBEvents:
)
else:
print_warning(f'An error occured when running journalctl: {journalctl_out}')
print_warning(f'An error occurred when running journalctl: {journalctl_out}')
filtered_history = _get_filtered_history()
except USBRipError as e: