From c2dc9d76be33c98284741e23c406500483c47753 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Tue, 5 Nov 2024 16:53:03 +0100 Subject: [PATCH] fix: Print in new line correctly --- src/main/kotlin/app/revanced/cli/command/ListPatchesCommand.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/app/revanced/cli/command/ListPatchesCommand.kt b/src/main/kotlin/app/revanced/cli/command/ListPatchesCommand.kt index d82185a..4de799d 100644 --- a/src/main/kotlin/app/revanced/cli/command/ListPatchesCommand.kt +++ b/src/main/kotlin/app/revanced/cli/command/ListPatchesCommand.kt @@ -111,7 +111,7 @@ internal object ListPatchesCommand : Runnable { if (withDescriptions) append("\nDescription: ${patch.description}") - append("Enabled: ${patch.use}") + append("\nEnabled: ${patch.use}") if (withOptions && patch.options.isNotEmpty()) { appendLine("\nOptions:")