From dfd1e2434438787dbfe721f76db6fea477caf441 Mon Sep 17 00:00:00 2001 From: Milap Naik Date: Tue, 6 Feb 2024 15:43:30 -0500 Subject: [PATCH] last function name change --- src/commands/GetDeviceInfoCommand.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/GetDeviceInfoCommand.ts b/src/commands/GetDeviceInfoCommand.ts index af45e53..1bf10b3 100644 --- a/src/commands/GetDeviceInfoCommand.ts +++ b/src/commands/GetDeviceInfoCommand.ts @@ -6,6 +6,6 @@ export class GetDeviceInfoCommand { const outputPath = await rokuDeploy.getDeviceInfo({ host: args.host }); - console.log(util.printObjectToTable(outputPath)); + console.log(util.objectToTableString(outputPath)); } }