From a102011f8b70bdf80fdeb1096b58581ffa0f90f2 Mon Sep 17 00:00:00 2001 From: Robert Martin Date: Sat, 16 May 2020 11:09:05 +0200 Subject: [PATCH] small cleanup --- run_controller_cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run_controller_cli.py b/run_controller_cli.py index c129e1a..64901c3 100644 --- a/run_controller_cli.py +++ b/run_controller_cli.py @@ -183,7 +183,7 @@ async def _main(args): # Create amiibo command async def amiibo(*args): """ - amiibo - Sets amiibo content + amiibo - Sets nfc content Usage: amiibo Set controller state NFC content to file @@ -192,7 +192,7 @@ async def _main(args): if controller_state.get_controller() == Controller.JOYCON_L: raise ValueError('NFC content cannot be set for JOYCON_L') elif not args: - raise ValueError('"amiibo" command requires amiibo dump file path as argument!') + raise ValueError('"amiibo" command requires file path to an nfc dump as argument!') elif args[0] == 'remove': controller_state.set_nfc(None) print('Removed nfc content.')