From c1432477aad408e552605114e6b21e85fcc551ac Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Wed, 16 Mar 2016 02:23:17 -0500 Subject: [PATCH] Fixed incorrect reference to processTag function. --- .../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 547abae..1bc0065 100644 --- a/cli/src/main/groovy/com/jdbernard/wdiwtlt/cli/CommandLineInterface.groovy +++ b/cli/src/main/groovy/com/jdbernard/wdiwtlt/cli/CommandLineInterface.groovy @@ -323,7 +323,7 @@ Configuration: case 'add': return processAdd(rest, currentSelection) case 'remove': return processRemove(rest, currentSelection) case 'tag': return processTag(rest, currentSelection) - case 'untag': return processUntag(rest, currentSelection) + case 'untag': return processTag(rest, currentSelection, false) case 'clear': return processClear(rest) case 'pause': return processPause() case 'stop': return processStop()