X-Git-Url: https://git.phdru.name/?p=m_lib.git;a=blobdiff_plain;f=m_lib%2Fflad%2Ffladw.py;h=5901925db43eadca8e2628f958096b2fda2ec24a;hp=fa0007443d7060a54257a416ab60d2d6160f11b5;hb=7f8cd12c390d9c7dacdec849982d7ca28f0a44e2;hpb=9df34694f85776553a1153dcb71097d287a99290 diff --git a/m_lib/flad/fladw.py b/m_lib/flad/fladw.py index fa00074..5901925 100644 --- a/m_lib/flad/fladw.py +++ b/m_lib/flad/fladw.py @@ -7,8 +7,12 @@ import re from m_lib.flad import flad -error = "fladw.error" -section_error = "fladw.section_error" +from .flad import checking_error +class error(checking_error): + pass + +class section_error(checking_error): + pass re_section = re.compile("^ *\[(.+)\] *$")