summaryrefslogtreecommitdiff
path: root/lulua/writer.py
diff options
context:
space:
mode:
authorLars-Dominik Braun <lars@6xq.net>2019-10-02 17:19:49 +0200
committerLars-Dominik Braun <lars@6xq.net>2019-10-03 09:14:05 +0200
commit466a26f7ef64e9a8299e2b1c7704506c42681e5f (patch)
treef7395b531ab2365f32525b091a0ffde1068d5e2e /lulua/writer.py
parent41a60920e413a513801ba186de86e2a7fd7ef9c3 (diff)
downloadlulua-466a26f7ef64e9a8299e2b1c7704506c42681e5f.tar.gz
lulua-466a26f7ef64e9a8299e2b1c7704506c42681e5f.tar.bz2
lulua-466a26f7ef64e9a8299e2b1c7704506c42681e5f.zip
layouts: Remove empty string production
Diffstat (limited to 'lulua/writer.py')
-rw-r--r--lulua/writer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lulua/writer.py b/lulua/writer.py
index 38dc01c..bbe1efb 100644
--- a/lulua/writer.py
+++ b/lulua/writer.py
@@ -186,7 +186,7 @@ class Writer:
try:
match, combinations = self.layout (buf)
- assert len (match) > 0, match
+ assert len (match) > 0, (match, combinations, buf)
comb = self.chooseCombination (combinations)