diff options
author | David Robillard <d@drobilla.net> | 2014-11-01 00:19:22 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-11-01 00:19:22 +0000 |
commit | d711e04227b7a9c5d9ef486512bfa45d68778925 (patch) | |
tree | 624062931da63e8b35092e2eb91e4fb8bebe9724 /wscript | |
parent | 118ec555a37ff2324dad2ea81b2b6bef3d0d2c20 (diff) | |
download | lv2-d711e04227b7a9c5d9ef486512bfa45d68778925.tar.xz |
Fix merging of version histories in specification documentation.
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -270,7 +270,7 @@ def build_index(task): print('warning: %s has no file release\n' % proj) # Get history for this LV2 release - entries = lv2specgen.specHistoryEntries(model, proj) + entries = lv2specgen.specHistoryEntries(model, proj, {}) # Add entries for every spec that has the same distribution ctx = task.generator.bld @@ -288,7 +288,6 @@ def build_index(task): # Generate history for all post-unification LV2 distributions history = lv2specgen.specHistoryMarkup(entries) - global index_lines rows = [] for f in task.inputs: if not f.abspath().endswith('index.html.in'): |