diff --git a/editor b/editor index 8ccb1cd..3415900 100755 --- a/editor +++ b/editor @@ -175,7 +175,8 @@ class EditorGui: for i in range(YSIZE): m = pat.search(s) if m is None: - print("gronk") + print("Unable to interpret selection data {!r} as a " + "Bedstead glyph description".format(s)) return bitmap.append(int(m.group(0), 8) & ((1 << XSIZE) - 1)) s = s[m.end(0):]