diff options
author | Sergiusz Bazanski <q3k@q3k.org> | 2018-07-13 19:10:20 +0100 |
---|---|---|
committer | Sergiusz Bazanski <q3k@q3k.org> | 2018-07-13 19:10:27 +0100 |
commit | b8ca1a55820d6429f5ad5207be1e125b8786e093 (patch) | |
tree | 6733f6ff9de556ccee6bf87b33dbe6b963cbc6db /ice40/chipdb.py | |
parent | 89809a8b810dd57f50f365d70a0ce547705f8dbb (diff) | |
parent | 07ff5ad8b8e4d0f87770b81b8478aa257567c504 (diff) | |
download | nextpnr-b8ca1a55820d6429f5ad5207be1e125b8786e093.tar.gz nextpnr-b8ca1a55820d6429f5ad5207be1e125b8786e093.tar.bz2 nextpnr-b8ca1a55820d6429f5ad5207be1e125b8786e093.zip |
Merge branch 'master' of gitlab.com:SymbioticEDA/nextpnr into q3k/lock-the-things
Diffstat (limited to 'ice40/chipdb.py')
-rw-r--r-- | ice40/chipdb.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ice40/chipdb.py b/ice40/chipdb.py index f52a2283..51fe169c 100644 --- a/ice40/chipdb.py +++ b/ice40/chipdb.py @@ -77,7 +77,7 @@ with open(args.gfxh) as f: state = 1 elif state == 1 and line.startswith("};"): state = 0 - elif state == 1 and line.startswith("{"): + elif state == 1 and (line.startswith("{") or line.strip() == ""): pass elif state == 1: idx = len(gfx_wire_ids) |