From 1751de7dff060bf7ebcd2a59c729df477693ad7f Mon Sep 17 00:00:00 2001 From: Gino D Date: Sun, 8 Jan 2023 01:51:31 +0100 Subject: [PATCH] Fixed wording... --- src/picowatch.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/picowatch.py b/src/picowatch.py index 9d54925..89d8c1c 100644 --- a/src/picowatch.py +++ b/src/picowatch.py @@ -297,7 +297,7 @@ class Pyboard(object): time.sleep(0.01) else: - raise Exception('Terminal: could not enter raw REPL mode') + raise Exception('Terminal: could not enter raw-REPL mode') return self.__terminal @@ -915,9 +915,9 @@ while True: tab.line('download', 'get', '', 'Download file or directory contents from the Pyboard to the PC. Warning: this may cause file corruption.') tab.line('compare', 'diff', ' [use vim]', 'Compare source code from PC with source code from the Pyboard (vim or vscode is required)') tab.line('compile', 'mpy', '', 'Compile source file to mpy file') - tab.line('install', 'ins', '', 'Install a package lib') + tab.line('install', 'mip', '', 'Install a package lib') tab.line('status', 'mod', '', 'Show the working tree status (Git is required)') - tab.line('commit', 'sync', ' (default: "")', 'Synchronize Pyboard along with associated commits (Git is required)') + tab.line('commit', 'sync', ' (default: "")', 'Synchronize Pyboard along with associated commit(s) (Git is required)') case ['os' | 'uname']: picowatch.terminal('import os;print(os.uname().machine, os.uname().version)') case ['ls' | 'scan', *file]: @@ -943,7 +943,7 @@ while True: picowatch.commit(message=' '.join(message).strip()) case ['mpy' | 'compile', file]: picowatch.compile(file) - case ['ins' | 'install', package_name]: + case ['mip' | 'install', package_name]: print('# TODO') case ['!' | 'test', *file]: picowatch.test(file[0] if file else 'main.py')