From 4007f8a47991bec2c5c16c6c9ca38df402e8ffd3 Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Sun, 22 May 2016 07:15:53 -0500 Subject: [PATCH] Fix bug in help code. --- .../com/jdbernard/wdiwtlt/cli/CommandLineInterface.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/main/groovy/com/jdbernard/wdiwtlt/cli/CommandLineInterface.groovy b/cli/src/main/groovy/com/jdbernard/wdiwtlt/cli/CommandLineInterface.groovy index 2ab3856..1494af6 100644 --- a/cli/src/main/groovy/com/jdbernard/wdiwtlt/cli/CommandLineInterface.groovy +++ b/cli/src/main/groovy/com/jdbernard/wdiwtlt/cli/CommandLineInterface.groovy @@ -1417,7 +1417,7 @@ Library Management: """ default: - err "Unrecognized command: '$line'" + err "Unrecognized command: '$options'" drawLeader() Thread.sleep(250) break } }