rtfm/dynamics/item/armour/generate.py [1031:1042]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    current = {}

    print('processing {} rows'.format(len(trs)))

    all_files = []

    for row in trs[1:]:
        if len(row) == 1:
            # this is a group row
            group = row.text_content().strip()
            if current:
                content = '\n'.join(current['rows'])
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



rtfm/dynamics/item/weapon/generate.py [1078:1089]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    current = {}

    print('processing {} rows'.format(len(trs)))

    all_files = []

    for row in trs[1:]:
        if len(row) == 1:
            # this is a group row
            group = row.text_content().strip()
            if current:
                content = '\n'.join(current['rows'])
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



