| commit | 21a33e50a199eb013ccf3260b243be5b3a71e516 | [log] [tgz] |
|---|---|---|
| author | Tim 'mithro' Ansell <me@mith.ro> | Tue Feb 06 09:52:10 2018 -0800 |
| committer | Tim 'mithro' Ansell <me@mith.ro> | Tue Feb 13 10:29:43 2018 -0800 |
| tree | 8cae2f6831aac03b5fe4b40e771d95dd9158fe7e | |
| parent | cf64309ee3d4d20bea5a4af462b2d55c3b08c2a3 [diff] |
Fix wrapping. Signed-off-by: Tim 'mithro' Ansell <me@mith.ro>
diff --git a/htmlgen/htmlgen.py b/htmlgen/htmlgen.py index 8f1641b..fdc78d3 100755 --- a/htmlgen/htmlgen.py +++ b/htmlgen/htmlgen.py
@@ -212,7 +212,8 @@ print(" loading %s segbits." % segtype) with db_open("segbits_%s.db" % segtype) as f: for line in f: - if re.search(r"(\.[ABCD](5?FF|OUT)MUX\.)|(\.PRECYINIT\.)", line): + if re.search(r"(\.[ABCD](5?FF|OUT)MUX\.)|(\.PRECYINIT\.)", + line): add_pip_bits(line) else: add_single_bit(line)