fix deck import exception message

Signed-off-by: Jamin W. Collins <jamin.collins@gmail.com>
This commit is contained in:
Jamin W. Collins
2018-10-18 18:11:45 -06:00
parent fda3e81d9a
commit 2e81a939b9

View File

@@ -104,7 +104,7 @@ public class DeckImportController {
deckSection = DeckSection.Conspiracy;
}
else {
throw new NotImplementedException("Unexpected section: %s", t.getText());
throw new NotImplementedException("Unexpected section: " + t.getText());
}
}
if (type != DeckRecognizer.TokenType.KnownCard) {