From 40768cb57a2ef1833f5e344b665bdd35a32979ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Veres-Szentkir=C3=A1lyi?= Date: Tue, 19 Apr 2016 11:21:31 +0200 Subject: [PATCH] codegen: added MartinM2 to the test harness --- pysstv/examples/codegen.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pysstv/examples/codegen.py b/pysstv/examples/codegen.py index a298099..0447b60 100644 --- a/pysstv/examples/codegen.py +++ b/pysstv/examples/codegen.py @@ -37,10 +37,10 @@ class Image(object): def __str__(self): return self.content -from pysstv.color import MartinM1 +from pysstv.color import MartinM1, MartinM2 import re -supported = [MartinM1] +supported = [MartinM1, MartinM2] ROW_RE = re.compile(r'ROW\(\d+\)') def main(sstv_class=None):